-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (63 loc) · 3.27 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css" media="screen">
<title>Password generator and strength checker</title>
<meta name="description" content="Generate random or pronounceable password in safe enviroment.">
</head>
<body>
<div class="zenbox-branding">
Made in
<a class="zenbox-logo" href="http://zenbox.pl"><img src="images/zenbox-logo.svg" alt="Zenbox.pl" height="30"></a>
</div>
<div class="generator">
<fieldset>
<input class="generator-output" id="generate-output" type="text" spellcheck="false">
</fieldset>
<div class="width-limiter">
<div class="password-strength">Crack time: <span id="password-strength-output"></span></div>
<fieldset class="generator-recipe" id="generator-recipe">
<div class="generator-slider-wrapper">
<label>Password length</label>
<div id="password-length" class="generator-slider"></div>
</div>
<label for="generate-pronounceable" class="generator-checkbox">
<input type="checkbox" id="generate-pronounceable">
<span class="generator-checkbox-indicator"></span>
Make pronouncable
</label>
</fieldset>
<div class="generator-details">
<p>You can check strength by changing generated password.</p>
<hr>
<p>Passwords does not leave input field above. Everything works in your browser locally.</p>
<p>Source code is available at <a href="https://github.com/zenboxhq/passgen-site" class="generator-btn">github.com</a>.</p>
<p>Generator based on <a class="generator-btn" href="https://github.com/bermi/password-generator">password-generator</a>. Realistic crack time measured by <a class="generator-btn" href="https://github.com/dropbox/zxcvbn">zxcvbn</a>.</p>
</div>
</div>
<div class="social-share">
<a href="https://twitter.com/share" class="twitter-share-button" data-via="zenbox_pl" data-related="zenbox_pl">Tweet</a>
<div class="fb-like" data-layout="button_count" data-action="like" data-show-faces="false" data-share="false"></div>
</div>
</div>
<script src="js/lib/jquery.js"></script>
<script src="js/lib/jquery.ui.custom.js"></script>
<script src="js/lib/jquery.ui.touch-punch.js"></script>
<script src="js/lib/password-generator.js"></script>
<script src="js/lib/zxcvbn.js"></script>
<script src="js/zen.js"></script>
<!-- Twitter -->
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<!-- Facebook -->
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.0";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
</body>
</html>