-
Notifications
You must be signed in to change notification settings - Fork 3
/
add_students.html
34 lines (33 loc) · 988 Bytes
/
add_students.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
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/index.css"/>
</head>
<body>
<!--Hopkins header-->
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a href="/" class="brand">Hopkins Planner</a>
<div class="nav-collapse">
<ul class="nav"></ul>
</div>
</div>
</div>
</div>
<!--Main Page-->
<div class="container content">
<h3>Make a Class</h3>
<div class="container content block-selection">
<div style="padding-right:20px">
<p>Type in Student Name</p>
<form>
<input type="text"/>
<input type="submit" class="btn btn-primary" name="Add Student">
</form>
</div>
</div>
</div>
</body>
</html>