]> git.wh0rd.org - chrome-ext/web-power-switch.git/blame - options.html
set utf-8 in html files
[chrome-ext/web-power-switch.git] / options.html
CommitLineData
dc7033a8 1<!-- Written by Mike Frysinger <vapier@gmail.com>. Released into the public domain. -->
a98f3ef6
MF
2<!doctype html>
3<html>
4
5<head>
e68d1203 6<meta charset='utf-8'/>
a98f3ef6
MF
7<title>Web Power Switch Manager Options</title>
8<script src='common.js'></script>
9<script src='options.js'></script>
d5664f4c 10<style>body { padding: 0px; }</style>
a98f3ef6
MF
11</head>
12
d5664f4c 13<body>
a98f3ef6
MF
14<table>
15<tr>
e09bdd59
MF
16 <td>URL:</td>
17 <td><input type='text' id='url' size=40
18 autocapitalize='none' autocorrect='off' spellcheck='false'></td>
a98f3ef6
MF
19</tr>
20<tr>
e09bdd59
MF
21 <td>User:</td>
22 <td><input type='text' id='user' size=40
23 autocapitalize='none' autocorrect='off' spellcheck='false'></td>
a98f3ef6 24</tr>
3a003566 25<tr>
e09bdd59
MF
26 <td>Pass:</td>
27 <td><input type='password' id='pass' size=30
28 autocapitalize='none' autocorrect='off' spellcheck='false'>&nbsp;<button id='show-pass'>👁</button></td>
3a003566 29</tr>
a98f3ef6 30</table>
7e0338f4 31
d5664f4c
MF
32<p style='text-align: center'>
33<input type='button' id='save' value='Save'>
34</p>
35<p style='text-align: center' id='msg'>
36You must hit "Save" the first time to authorize the client.
37</p>
7e0338f4 38
a98f3ef6
MF
39</body>
40</html>