-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
66 lines (62 loc) · 2.39 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
<title>Teacher Dashboard</title>
</head>
<body>
<header>
<img class="menu__icons" src="./assets/rocket.svg" alt="Rocket Logo">
<span class="appName">Teacher <br/> Dashboard</span>
<div class="menu">
<div class="userInfo">
<span class="userInfo__name">John Doe</span>
<span class="userInfo__role">Teacher</span>
</div>
<img class="menu__avatar" src="/assets/avatar.png" alt="Avatar Icon">
<img class="menu__icons" src="/assets/notification_new.svg" alt="New Notification Icon">
</div>
</header>
<div class="container">
<aside class="card">
<div class="card__header">
<h2>My Groups</h2>
</div>
<div id="groups">
<table id="groups_table">
<th>Group</th>
<th>Subject</th>
<th>Students</th>
<th>Actions</th>
</table>
</div>
</aside>
<main id="details" class="card">
<div class="card__header">
<h2 id="group_title"> Select a Group</h2>
</div>
<div id="students">
<table id="students_table">
<th>Student<br/> Id</th>
<th>First<br/> Name</th>
<th>Last<br/> Name</th>
<th>1rst<br/>Period</th>
<th>2nd <br/>Period</th>
<th>3rd <br/>Period</th>
<th>4th <br/>Period</th>
<th>Average</th>
<th>Actions</th>
</table>
<div id="table_footer">Loading more students</div>
</div>
</main>
</div>
<script src="index.js"></script>
</body>
</html>