-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
86 lines (70 loc) · 3.39 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Testing</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 20px;
}
</style>
</head>
<body>
<div class="col-md-6">
<div class="panel panel-info">
<div class="panel-heading">
<span id="save-title">Options</span>
</div>
<div class="panel-body">
<form id="options-form">
<div class="col-lg-3 form-group input-group-sm">
<label for="student-id">Numéro d'étudiant</label>
<input type="text" class="form-control" id="student-id" placeholder="3000000">
</div>
<div class="col-lg-3 form-group input-group-sm">
<label for="student-pswd">Mot de passe</label>
<input type="password" class="form-control" id="student-pswd" placeholder="ILoveThisApp<3">
</div>
<br>
<div class="col-lg-3">
<div>
<label>Notifications de bureau <input type="checkbox" checked="checked" id="dskt-notify">
</label>
</div>
</div>
<br>
<div class="col-lg-3">
<label>Vérifier les notes toutes les : </label>
</div>
<div class="col-lg-3 text-center">
<label class="radio-inline">
<input type="radio" name="radio-frequency" id="inline-radio1" value="1"> 1h
</label>
<label class="radio-inline">
<input type="radio" name="radio-frequency" id="inline-radio6" value="6"> 6h
</label>
<label class="radio-inline">
<input type="radio" name="radio-frequency" id="inline-radio12" value="12"> 12h
</label>
<label class="radio-inline">
<input type="radio" name="radio-frequency" id="inline-radio24" value="24"> 24h
</label>
<button type="submit" id="save-btn" class="btn btn-sm btn-info pull-right">Save</button>
</div>
</form>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/libs/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/libs/bootstrap.min.js"></script>
<script src="js/popup/grades.js"></script>
<script src="js/scheduler/notification.js"></script>
<script src="js/scheduler/badge.js"></script>
<script src="js/scheduler/scheduler.js"></script>
<script src="js/options/options.js"></script>
</body>
</html>