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