-
Notifications
You must be signed in to change notification settings - Fork 4
/
tests.html
52 lines (47 loc) · 1.97 KB
/
tests.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
<!DOCTYPE html>
<html>
<head>
<head>
<title>Tests</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<link href="css/carolinescustomcss.css" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome.min.css">
</head>
<body>
<div class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand">Teacher</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="home.html"><i class="fa fa-home"></i> Home</a></li>
<li><a href="students.html"><i class="fa fa-users"></i> Students</a></li>
<li><a href="classes.html"><i class="fa fa-book"></i> Classes</a></li>
<li class="active"><a href="tests.html"><i class="fa fa-pencil"></i> Tests</a></li>
<li><a href="notifications.html"><i class="fa fa-refresh"></i> Pending</a></li>
<li><a href="reports.html"><i class="fa fa-tachometer"></i> Reports</a></li>
<li><a href="awards.html"><i class="fa fa-star"></i> Awards</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
<h1>Tests</h1>
<p>This page needs to display all the tests in the database</p>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>