Change the width to 100% now that padding is gone.
[skeletonkey.git] / hosted.html
1 <!DOCTYPE html>
2 <html manifest="skeletonkey.appcache">
3 <head>
4 <title>Skeleton Key Hosted</title>
5 <meta name="viewport" content="width=device-width, user-scalable=no" />
6 <link rel="stylesheet" href="common.css" />
7 <link rel="stylesheet" href="hosted.css" />
8 </head>
9 <body>
10 <h1>Skeleton Key</h1>
11
12 <p>
13 Skeleton Key is a password generator that uses
14 <a href="http://en.wikipedia.org/wiki/PBKDF2">PBKDF2</a> to generate
15 secure, unique passwords for each website and account. It uses a master
16 password of your choosing, a unique &ldquo;site key&rdquo;, and your
17 username on the site to generate the password. This process is algorithmic,
18 meaning the same combination of inputs will always generate the same
19 output password. Skeleton Key hashes your password with the site key and
20 username 1,000 times, making it virtually impossible to get back your
21 original password.
22 </p>
23
24 <p>
25 This web page has been built for offline use, meaning that your web
26 browser can display Skeleton Key even without a network connection. This
27 allows you to lookup your passwords at any time. There is also a
28 <a href="#">Chrome Extension</a> that you can install. The
29 <a href="https://github.com/rsesek/skeletonkey">source code is also
30 available</a>.
31 </p>
32
33 <iframe id="core" src="core.html"></iframe>
34 <iframe id="options" src="options.html"></iframe>
35 </body>
36 </html>