-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (57 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Password Generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Password generator with multiple options.">
<meta name="author" content="Kacper B.">
<link href="assets/style.min.css" rel="stylesheet" />
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
</head>
<body>
<div class="container-narrow">
<div class="jumbotron">
<h3>Your generated password is</h3>
<h1 id="passgen"></h1>
<p class="lead">Remember to keep your password safe and to change it often</p>
<a class="btn btn-large btn-success" id="generate" href="#">Generate new</a> <a class="btn btn-large scroll" href="#options" data-toggle="collapse" data-target="#options"><i class="icon-wrench"></i> More options</a>
</div>
<div class="row-fluid collapse" id="options">
<h3>Options</h3>
<label for="maxLength">Password length</label>
<div class="input-append">
<input class="input-mini" id="maxLength" value="8" type="number" required>
<span class="add-on">characters</span>
</div>
<label class="checkbox">
<input type="checkbox" id="chLetters" checked="checked"> Include letters
</label>
<label class="checkbox">
<input type="checkbox" id="chNumbers" checked="checked"> Include numbers
</label>
<label class="checkbox">
<input type="checkbox" id="chUpperCase" checked="checked"> Include UPPER CASE
</label>
<label class="checkbox">
<input type="checkbox" id="chNoSimilar" checked="checked"> Exclude similar characters
</label>
<label class="checkbox">
<input type="checkbox" id="chPunctuation"> Include punctuation, such as @ and &
</label>
<br />
<a class="btn btn-primary scroll" href="#" data-toggle="collapse" data-target="#options">Close</a>
</div>
<hr>
<div class="row-fluid list">
<h3>List of last generated passwords</h3>
<ul id="generated"></ul>
</div>
<hr>
<div class="footer">
<p>Password Generator v1.15. Created by Kacper B.<br />Fork at <a href="https://github.com/wokis/passgen">Github</a>. Made working by <a href="http://twitter.github.io/bootstrap/">Bootstrap</a> and <a href="http://jquery.com/">jQuery</a>.</p>
</div>
</div>
<script src="assets/script.min.js"></script>
</body>
</html>