]> git.wh0rd.org - chrome-ext/web-power-switch.git/blame - options.html
options: switch to new chrome options page
[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>
d5664f4c 15 <td>URL:</td><td><input type='text' id='url' size=40></td>
a98f3ef6
MF
16</tr>
17<tr>
d5664f4c 18 <td>User:</td><td><input type='text' id='user' size=40></td>
a98f3ef6 19</tr>
3a003566 20<tr>
d5664f4c 21 <td>Pass:</td><td><input type='text' id='pass' size=40></td>
3a003566 22</tr>
a98f3ef6 23</table>
7e0338f4 24
d5664f4c
MF
25<p style='text-align: center'>
26<input type='button' id='save' value='Save'>
27</p>
28<p style='text-align: center' id='msg'>
29You must hit "Save" the first time to authorize the client.
30</p>
7e0338f4 31
a98f3ef6
MF
32</body>
33</html>