-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
40 lines (36 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>Not My President Options</title>
<style>
body: { padding: 10px; }
div: { margin: 10px; width: 100%; display: block; }
</style>
</head>
<body>
<div style="margin: 10px 0;">
<label>
<input type="checkbox" id="redirect">
Please redirect whitehouse.gov to a better time filled with decency.
</label>
</div>
<div style="margin: 10px 0;">
<label>
<input type="checkbox" id="replace">
Yes, please save my sanity and replace Donald Trump's Name.
</label>
</div>
<div style="position:relative;margin: 20px 0;">
<label>
What would you like to replace Donald Trump's name with?
<input type="text" id="replace_word" style="margin-top:5px;width: 246px" />
<button id="generate_word" style="position: absolute;right: 0;bottom: 0px;">Generate Random</button>
</label>
</div>
<div id="status"></div>
<div style="margin: 10px 0;">
<button id="save">Save</button>
</div>
<script src="options.js"></script>
</body>
</html>