]> git.wh0rd.org - chrome-ext/web-power-switch.git/blame_incremental - options.html
fix dark theme
[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>
16 <td><input type='text' id='url' size=40
17 autocapitalize='none' autocorrect='off' spellcheck='false'></td>
18</tr>
19<tr>
20 <td>User:</td>
21 <td><input type='text' id='user' size=40
22 autocapitalize='none' autocorrect='off' spellcheck='false'></td>
23</tr>
24<tr>
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>
28</tr>
29</table>
30
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>
37
38</body>
39</html>