-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmentor-students.html
More file actions
127 lines (105 loc) · 4.61 KB
/
mentor-students.html
File metadata and controls
127 lines (105 loc) · 4.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Quest store</title>
<link rel="stylesheet" href="assets/stylesheets/user-card.css" />
<link rel="stylesheet" href="assets/stylesheets/main.css" />
</head>
<body>
<header class="primary-header">
<div class="container">
<div class="sub-header">
<div class="logo">
<a href="mentor.html">
<img src="assets/images/logo.png" alt="LOGO" />
</a>
</div>
</div>
<nav class="primary-nav">
<ul>
<li><a href="mentor.html">My Class</a></li>
<li><a href="mentor-students.html">Students</a></li>
<li><a href="mentor-items.html">Artifacts</a></li>
<li><a href="mentor-quests.html">Quests</a></li>
<li class="dropdown">
<a href="javascript:void(0)">Review</a>
<div class="dropdown-content">
<a href="mark-achieved-quests.html">Quests</a>
<a href="mark-bought-artifacts.html">Artifacts</a>
</div>
</li>
</ul>
<div id="logout">
<a href="login.html">
<img src="assets/images/logout.png" alt="Logout" />
</a>
</div>
</nav>
</div>
</header>
<section class="main-info">
<div class="student-info-container">
<form class="student-info-table new-student">
<div class="user-category-name student-category"></div>
<div class="student-profile-picture">
<img src="assets/images/student-card/student.png" alt="Student" class="student-picture" />
</div>
<div class="student-information">
<input type="text" name="name" placeholder="Enter codecooler's name" required="required" class="new-student-template" />
<input type="email" name="email" placeholder="Enter codecooler's email" required="required" class="new-student-template" />
<input type="text" name="text" placeholder="Enter codecooler's class" required="required" class="new-student-template" />
</div>
<input type="submit" name="submit-button" class="submit-button" value="Recruit Codecooler" />
</form>
<div class="student-info-table">
<div class="user-category-name student-category"></div>
<div class="student-profile-picture">
<img src="assets/images/student-card/student.png" alt="Student" class="student-picture" />
</div>
<div class="student-editable">
<ul class="student-information">
<li contenteditable="true" id="student-default-name">Brajan Petrucha</li>
<li contenteditable="true" id="student-default-email">b.petrucha@gmail.com</li>
<li contenteditable="true" id="student-default-class">Web</li>
<li class="students-atrifacts">
<button type="button" class="students-artifacts-button">Artifacts</button>
</li>
</ul>
<button type="submit" name="submit-button" class="submit-button" onclick="sendInfoStudentCard()">Save</button>
</div>
</div>
<div class="student-info-table">
<div class="user-category-name student-category"></div>
<div class="student-profile-picture">
<img src="assets/images/student-card/student.png" alt="Student" class="student-picture" />
</div>
<div class="student-editable">
<ul class="student-information">
<li contenteditable="true">John Kowalksi</li>
<li contenteditable="true">j.kowalski@gmail.com</li>
<li contenteditable="true">Java</li>
<li class="students-atrifacts">
<button type="button" class="students-artifacts-button">Artifacts</button>
</li>
</ul>
<button type="submit" name="submit-button" class="submit-button" onclick="sendInfoStudentCard()">Save</button>
</div>
</div>
</div>
<script src="Scripts/user-cards.js"></script>
</section>
<footer class="primary-footer">
<div class="logo">
<a href="mentor.html">
<img src="assets/images/logo.png" alt="Logo" />
</a>
</div>
<div>
<small>© CodeClimbersCorp</small>
</div>
<div>
</div>
</footer>
</body>
</html>