Make the hashed password field a div, since it works better on mobile.
[skeletonkey.git] / core.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Skeleton Key</title>
5 <script type="text/javascript" src="pbkdf2.js"></script>
6 <script type="text/javascript" src="core.js"></script>
7 <script type="text/javascript" src="options.js"></script>
8 <link rel="stylesheet" href="common.css" />
9 <link rel="stylesheet" href="core.css" />
10 </head>
11 <body>
12 <form autocomplete="off">
13 <ol>
14 <li>
15 <label for="master">Master Password</label>
16 <input type="password" id="master" />
17 </li>
18
19 <li>
20 <label for="sitekey">Site Key</label>
21 <input type="text" id="sitekey" />
22 </li>
23
24 <li>
25 <label for="username">Username</label>
26 <input type="text" id="username" />
27 </li>
28
29 <hr/>
30
31 <li>
32 <label for="password">Computed Password</label>
33 <div class="input" id="password">&nbsp;</div>
34 </li>
35
36 <li>
37 <button type="button" id="generate">Hash</button>
38 </li>
39 </ol>
40 </form>
41
42 <div class="clear"></div>
43
44 </body>
45 </html>