-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadmin.html
More file actions
119 lines (96 loc) · 4.03 KB
/
admin.html
File metadata and controls
119 lines (96 loc) · 4.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Title</title>
<link rel="stylesheet" href="assets/stylesheets/main.css" />
<link rel="stylesheet" href="assets/stylesheets/user-card.css" />
</head>
<body>
<header class="primary-header">
<div class="container">
<div class="sub-header">
<div class="logo">
<a href="admin.html">
<img src="assets/images/logo.png" alt="LOGO" />
</a>
</div>
</div>
<nav class="primary-nav">
<ul>
<li><a href="admin.html">Mentors</a></li>
<li><a href="admin-configuration.html">Configuration</a></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="mentor-info-container">
<form class="mentor-info-table new-mentor">
<div class="user-category-name mentor-category"></div>
<div class="mentor-profile-picture">
<img src="assets/images/mentor-card/mentor.png" alt="Mentor" class="mentor-picture" />
</div>
<div class="mentor-information">
<input type="text" name="name" placeholder="Enter mentor's name" required="required" class="new-mentor-template" />
<input type="email" name="email" placeholder="Enter mentor's email" required="required" class="new-mentor-template" />
<input type="text" name="text" placeholder="Enter mentor's class" required="required" class="new-mentor-template" />
</div>
<input type="submit" name="submit-button" class="submit-button" value="Recruit Mentor" />
</form>
<div class="mentor-info-table">
<div class="user-category-name mentor-category"></div>
<div class="mentor-profile-picture">
<img src="assets/images/mentor-card/mentor.png" alt="Mentor" class="mentor-picture" />
</div>
<div class="mentor-editable">
<ul class="mentor-information">
<li contenteditable="true" id="mentor-default-name">Name</li>
<li contenteditable="true" id="mentor-default-email">E-mail</li>
<li contenteditable="true" id="mentor-default-class">Class</li>
<li class="mentors-students">
<button type="button" class="mentor-students-button">Students</button>
</li>
</ul>
<button type="submit" name="submit-button" class="submit-button" onclick="sendInfoMentorCard()">Save</button>
</div>
</div>
<div class="mentor-info-table">
<div class="user-category-name mentor-category"></div>
<div class="mentor-profile-picture">
<img src="assets/images/mentor-card/mentor.png" alt="Mentor" class="mentor-picture" />
</div>
<div class="mentor-editable">
<ul class="mentor-information">
<li contenteditable="true">Name</li>
<li contenteditable="true">E-mail</li>
<li contenteditable="true">Class</li>
<li class="mentors-students">
<button type="button" class="mentor-students-button">Students</button>
</li>
</ul>
<button type="submit" name="submit-button" class="submit-button" onclick="sendInfoMentorCard()">Save</button>
</div>
</div>
</div>
</section>
<footer class="primary-footer">
<div class="logo">
<a href="admin.html">
<img src="assets/images/logo.png" alt="Logo" />
</a>
</div>
<div>
<small>© CodeClimbersCorp</small>
</div>
<div>
</div>
</footer>
<script src="Scripts/user-cards.js"></script>
</body>
</html>