]> git.wh0rd.org - chrome-ext/web-power-switch.git/blame - options.html
Create README.md
[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>
9</head>
10
11<body background='images/outlet.svg'>
12<table>
13<tr>
14 <td>URL:</td><td><input type='text' id='url'></td>
15</tr>
16<tr>
17 <td>User:</td><td><input type='text' id='user'></td>
18</tr>
19<tr>
20 <td>Pass:</td><td><input type='text' id='pass'></td>
21</tr>
3a003566
MF
22<tr>
23 <td colspan=2 align=center><input type='button' id='save' value='Save'></td>
24</tr>
a98f3ef6 25</table>
3a003566 26<div id='msg'>You must hit "Save" the first time to authorize the client</div>
a98f3ef6
MF
27</body>
28</html>