-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
35 lines (29 loc) · 841 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Moodle Breaker</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/bootstrap.min.css">
<link rel="stylesheet" href="assets/popup.css">
</head>
<body class="text-center">
<h1>Moodle</h1>
<hr>
<p>
<button type="button" id="solve" class="btn btn-success btn-lg">Break it!</button>
</p>
<form id="optionForm">
<p>
<input type="checkbox" name="remember" id="remember">
<label for="remember">
<span></span>
Answer instantly?
<small id="saved"></small>
</label>
</p>
</form>
<p class="text-right"><button id="about" class="btn btn-sm btn-default">About</button></p>
<script src="src/popup.js"></script>
</body>
</html>