]> git.wh0rd.org - chrome-ext/web-power-switch.git/blame - options.html
options: improve field handling
[chrome-ext/web-power-switch.git] / options.html
CommitLineData
a98f3ef6
MF
1<!-- Written by Mike Frysinger <vapier@gmail.com>. Released into the public domain. Suck it. -->
2<!doctype html>
3<html>
4
5<head>
6<title>Web Power Switch Manager Options</title>
7<script src='common.js'></script>
8<script src='options.js'></script>
d5664f4c 9<style>body { padding: 0px; }</style>
a98f3ef6
MF
10</head>
11
d5664f4c 12<body>
a98f3ef6
MF
13<table>
14<tr>
e09bdd59
MF
15 <td>URL:</td>
16 <td><input type='text' id='url' size=40
17 autocapitalize='none' autocorrect='off' spellcheck='false'></td>
a98f3ef6
MF
18</tr>
19<tr>
e09bdd59
MF
20 <td>User:</td>
21 <td><input type='text' id='user' size=40
22 autocapitalize='none' autocorrect='off' spellcheck='false'></td>
a98f3ef6 23</tr>
3a003566 24<tr>
e09bdd59
MF
25 <td>Pass:</td>
26 <td><input type='password' id='pass' size=30
27 autocapitalize='none' autocorrect='off' spellcheck='false'>&nbsp;<button id='show-pass'>👁</button></td>
3a003566 28</tr>
a98f3ef6 29</table>
7e0338f4 30
d5664f4c
MF
31<p style='text-align: center'>
32<input type='button' id='save' value='Save'>
33</p>
34<p style='text-align: center' id='msg'>
35You must hit "Save" the first time to authorize the client.
36</p>
7e0338f4 37
a98f3ef6
MF
38</body>
39</html>