-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
41 lines (41 loc) · 1.27 KB
/
options.html
File metadata and controls
41 lines (41 loc) · 1.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Options</title>
</head>
<body>
<h1>Options menu</h1>
<br />
<form id='account'>
Username: <input type="text" id="username" />
Password: <input type="password" id="password"/>
<br/>
<button type="submit" id='loginButton' >Login</button>
<button type="submit" id='registerButton'>Register</button>
</form>
<span>
</span>
<div>
<button id='logoutButton' style="display:none;">Logout</button>
</div>
<br />
<div id="websiteList">
<textarea id="websiteTextArea" rows="6" cols="50"> </textarea>
</div>
<form id="form1">
<label for="websiteText">Input website here!</label>
<input id="websiteText" type="text" />
<br />
<input type="radio" id="add" name="addOrRemove" />
<label for="add">Add website</label>
<input type="radio" id="remove" name="addOrRemove" />
<label for="remove">Remove website</label>
<br />
<input type="submit" value="Submit" />
</form>
<script src="./storage.js"></script>
<script src='./login.js'></script>
</body>
</html>