-
Notifications
You must be signed in to change notification settings - Fork 1
/
teacherAssessmentPage.html
96 lines (77 loc) · 2.71 KB
/
teacherAssessmentPage.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="teacherAssessmentPage.css">
</head>
<body>
<header>
<nav id="mainNav">
<div id="subSection">
<img src="book-stack.png" alt="Image of a book stack">
<p>Student Management System</p>
</div>
<div id="subSection">
<p id="teacherName">Teacher Name</p>
<a href="teacherLogin.html">
<div id="power">
<img src="power.png" alt="Image of a power on/off button">
<p>Logout</p>
</div>
</a>
</div>
</nav>
</header>
<div id="content">
<nav id="sideNav">
<h3>Navigation</h3>
<form action="teacherAssessmentPage.html">
<button>Assignment 1</button>
</form>
<form action="teacherAssessmentPage.html">
<button>Assignment 2</button>
</form>
<form action="teacherAssessmentPage.html">
<button>Assignment 3</button>
</form>
<form action="teacherAssessmentPage.html">
<button>Midterm</button>
</form>
<form action="#">
<button>Add assignment</button>
</form>
</nav>
<div id="middleSection">
<h3>Selected Assignment</h3>
<div id="titles">
<h4>Grades</h4>
<h4>Statistics</h4>
</div>
<div id="tableContainer">
<div id="leftTable">
<p>Student Name: grade%</p>
<p>Student Name: grade%</p>
<p>Student Name: grade%</p>
<p>Student Name: grade%</p>
<p>Student Name: grade%</p>
<p>Student Name: grade%</p>
<p>Student Name: grade%</p>
<p>Student Name: grade%</p>
<p>Student Name: grade%</p>
<p>Student Name: grade%</p>
<p>Student Name: grade%</p>
<p>Student Name: grade%</p>
</div>
<div id="lightTable">
<p>Class mean: grade%</p>
<p>Class median: grade%</p>
<p>Standard deviation: grade%</p>
</div>
</div>
<img src="snd.png" alt="A gaussian distribution">
</div>
</div>
</body>
</html>