-
Notifications
You must be signed in to change notification settings - Fork 8
/
popup.html
64 lines (63 loc) · 2.4 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Document</title>
<script src="popup.js"></script>
<script src="ocrad.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel='stylesheet prefetch' href='http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="row">
<h4>Credentials</h4>
<div class="input-group input-group-icon">
<input type="text" placeholder="Username" id="username"/>
<div class="input-icon"><i class="fa fa-user"></i></div>
</div>
<div class="input-group input-group-icon">
<input type="password" placeholder="Password" id="password"/>
<div class="input-icon"><i class="fa fa-key"></i></div>
</div>
<button class="button" id="save">Update</button>
</div>
<div class="row">
<h4>AutoLogin</h4>
<div class="slideTwo">
<input type="checkbox" value="None" id="autologin" name="check" checked />
<label for="autologin"></label>
</div>
</div>
<div class="row">
<h4>Moodle Notifications</h4>
<div class="slideThree">
<input type="checkbox" value="None" id="moodle" name="check" checked />
<label for="moodle"></label>
</div>
</div>
<div class="row">
<h4>Webmail Notifications</h4>
<div class="slideThree">
<input type="checkbox" value="None" id="webmail" name="check" checked />
<label for="webmail"></label>
</div>
</div>
</div>
<!--input type="text" id="username" placeholder="Username.."></textarea>
<input type="password" id="password" placeholder="Password.."></textarea>
AutoLogin
<input type="checkbox" id="autologin">
<input type="button" id="save" value="Apply">
<br>
<strong>Proxy setting</strong>
<input type="checkbox" id="proxy">
<br>
<strong>Moodle</strong>
<input type="checkbox" id="moodle">
<br>
<strong>Webmail</strong>
<input type="checkbox" id="webmail"-->
</body>
</html>