]> git.wh0rd.org - chrome-ext/web-power-switch.git/blame - options.html
fix dark theme
[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>
00a6ceea
MF
10<style>
11body { padding: 0px; }
12button.selected { filter: invert(1); }
13</style>
a98f3ef6
MF
14</head>
15
d5664f4c 16<body>
a98f3ef6
MF
17<table>
18<tr>
e09bdd59
MF
19 <td>URL:</td>
20 <td><input type='text' id='url' size=40
21 autocapitalize='none' autocorrect='off' spellcheck='false'></td>
a98f3ef6
MF
22</tr>
23<tr>
e09bdd59
MF
24 <td>User:</td>
25 <td><input type='text' id='user' size=40
26 autocapitalize='none' autocorrect='off' spellcheck='false'></td>
a98f3ef6 27</tr>
3a003566 28<tr>
e09bdd59
MF
29 <td>Pass:</td>
30 <td><input type='password' id='pass' size=30
31 autocapitalize='none' autocorrect='off' spellcheck='false'>&nbsp;<button id='show-pass'>👁</button></td>
3a003566 32</tr>
00a6ceea
MF
33<tr>
34 <td>Theme:</td>
35 <td>
36 <input type='text' id='theme' hidden>
37 <button id='theme-light'>Light</button>
38 <button id='theme-system'>System</button>
39 <button id='theme-dark'>Dark</button>
40 </td>
41</tr>
a98f3ef6 42</table>
7e0338f4 43
d5664f4c
MF
44<p style='text-align: center'>
45<input type='button' id='save' value='Save'>
46</p>
47<p style='text-align: center' id='msg'>
48You must hit "Save" the first time to authorize the client.
49</p>
7e0338f4 50
a98f3ef6
MF
51</body>
52</html>