]> git.wh0rd.org - chrome-ext/web-power-switch.git/blame_incremental - options.html
options: switch to new chrome options page
[chrome-ext/web-power-switch.git] / options.html
... / ...
CommitLineData
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>
9<style>body { padding: 0px; }</style>
10</head>
11
12<body>
13<table>
14<tr>
15 <td>URL:</td><td><input type='text' id='url' size=40></td>
16</tr>
17<tr>
18 <td>User:</td><td><input type='text' id='user' size=40></td>
19</tr>
20<tr>
21 <td>Pass:</td><td><input type='text' id='pass' size=40></td>
22</tr>
23</table>
24
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>
31
32</body>
33</html>