-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
33 lines (30 loc) · 882 Bytes
/
options.html
File metadata and controls
33 lines (30 loc) · 882 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Mastering Physics Auto Login Options</title>
<script src="options.js"></script>
<link rel="stylesheet" type="text/css" href="options.css">
</head>
<body>
<div id="header">
<div class="inner">
<div id="title">Mastering Physics Auto Login</div>
</div>
</div>
<br>
<div class="inner">
<div class="option">
<span class="option-label">Username:</span>
<input id="user" type="text" style="padding: 4px 6px; margin-left: 15px;">
</div>
<div class="inner">
<span class="option-label">Password:</span>
<input id="pass" type="password" style="padding: 4px 6px; margin-left: 15px;">
<br>
</div>
<div id="status" style="margin-top: 15px;"> </div>
<button id="save" style=" margin: 20px 10px;">Save</button>
<button id="clear" class="gray" style=" margin: 20px 10px;">Clear</button>
</div>
</body>
</html>