-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
42 lines (36 loc) · 1007 Bytes
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>Gradesource Options</title>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<style type="text/css">
body {
padding:20px;
}
#add_form {
width:400px;
}
</style>
</head>
<body>
<div class="page-header">
<h1>Options <small>for Quick Gradesource Extension</small></h1>
</div>
Saved Courses:
<div id="saved">
</div>
Add a Gradesource Class:<br>
<div id="add_form" class="input-group">
<input type="text" class="form-control" placeholder="Gradesource Link" id="link"> <br>
<input type="text" class="form-control" placeholder="Name of class" id="name"> <br>
<input type="text" class="form-control" placeholder="Secret Number" id="secret_number"> <br>
<div class="btn-group btn-group-justified">
<div class="btn-group">
<button id="add" class="btn btn-default">Add Class</button>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/options.js"></script>
</body>
</html>