]> git.wh0rd.org - chrome-ext/web-power-switch.git/blame_incremental - options.html
support minifying css files too
[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</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>
22<tr>
23 <td colspan=2 align=center><input type='button' id='save' value='Save'></td>
24</tr>
25</table>
26<div id='msg'>You must hit "Save" the first time to authorize the client</div>
27</body>
28</html>