-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent.html
56 lines (40 loc) · 1.94 KB
/
student.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1, minimum-scale=1, user-scale=no">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap-theme.css">
<link rel="stylesheet" href="css/student.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/animate.css">
<title>student page</title>
</head>
<body>
<div class="container">
<p>STUDENT PAGE</p>
<form role="form">
<div class="form-group">
<label for="email">Email address:</label>
<input type="email" class="form-control" id="email" required>
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" class="form-control" id="password" required>
</div>
<div class="checkbox">
<label ><input type="checkbox"> Remember me</label>
</div>
<button type="button" id="login" class="btn btn-primary btn-lg" value="authenticate">login</button>
</form>
</div>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/Admin.js"></script>
<script src="js/wow.min.js"></script>
<script>
new WOW().init();
</script>
<script type="text/javascript" src="js/wow.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
</body>
</html>