-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (165 loc) · 7.68 KB
/
Copy pathindex.html
File metadata and controls
165 lines (165 loc) · 7.68 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='IE=edge' http-equiv='X-UA-Compatible'/>
<meta content='width=device-width, initial-scale=1, maximum-scale=1' name='viewport'/>
<title>Strong Password Generator</title>
<link href='assets/css/bootstrap.min.css' rel='stylesheet'/>
<link href='assets/css/style.min.css' rel='stylesheet'/>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header class="jumbotron">
<div class="container">
<h1><span class="text-uppercase">Strong Password</span> <small>Generator</small></h1>
<p>Generate strong, secure, random passwords online. Also, learn to define strong passwords.</p>
<a class="btn btn-default" href="documentation.html">Documentation</a>
<a class="btn btn-default" href="#" target="blank">Buy Now</a>
</div>
</header>
<div class="page-content">
<div class="container">
<section class="intro" id="intro">
<div class="page-header">
<h2>Strong Password Definition / Requirements</h2>
</div>
<div class="row">
<div class="col-sm-6 col-md-6 col-lg-6">
<p class="lead">A strong password <b>has:</b></p>
<ul class="list-unstyled">
<li><i class="glyphicon glyphicon-ok text-success"></i> At least <b>15 characters</b></li>
<li><i class="glyphicon glyphicon-ok text-success"></i> <b>Uppercase letters</b></li>
<li><i class="glyphicon glyphicon-ok text-success"></i> <b>Lowercase letters</b></li>
<li><i class="glyphicon glyphicon-ok text-success"></i> <b>Numbers</b></li>
<li><i class="glyphicon glyphicon-ok text-success"></i> <b>Symbols</b>, such as <code>` ! " ? $ ? % ^ & * ( ) _ - + = { [ } ] : ; @ ' ~ # | \ < , > . ? /</code></li>
</ul>
</div>
<div class="col-sm-6 col-md-6 col-lg-6">
<p class="lead">A strong password <b>is not:</b></p>
<ul class="list-unstyled">
<li><i class="glyphicon glyphicon-remove text-danger"></i> Your <b>login</b> or <b>username</b></li>
<li><i class="glyphicon glyphicon-remove text-danger"></i> Your <b>name</b>, your <b>friend’s name</b>, your <b>family member’s name</b>, or a <b>common name</b></li>
<li><i class="glyphicon glyphicon-remove text-danger"></i> Your <b>date of birth</b></li>
<li><i class="glyphicon glyphicon-remove text-danger"></i> Like your <b>previous passwords</b></li>
<li><i class="glyphicon glyphicon-remove text-danger"></i> A dictionary <b>word</b></li>
<li><i class="glyphicon glyphicon-remove text-danger"></i> A <b>keyboard pattern</b>, such as <code>qwerty</code>, <code>asdfghjkl</code>, or <code>12345678</code></li>
</ul>
</div>
</div>
</section>
<section class="featured" id="featured">
<div class="page-header">
<h2>Featured</h2>
</div>
<div class="row">
<div class="col-sm-6 col-md-3 col-lg-3">
<div class="featured text-center">
<i class="glyphicon glyphicon-scissors"></i>
<p>Specify the password in the event of pressure on the text field easily copied word</p>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3">
<div class="featured text-center">
<i class="glyphicon glyphicon-thumbs-up"></i>
<p>Easy to use</p>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3">
<div class="featured text-center">
<i class="glyphicon glyphicon-refresh"></i>
<p>Change the password when you press the button</p>
</div>
</div>
<div class="col-sm-6 col-md-3 col-lg-3">
<div class="featured text-center">
<i class="glyphicon glyphicon-flash"></i>
<p>Directed by a strong password</p>
</div>
</div>
</div>
</section>
<section class="demo" id="demo">
<div class="page-header">
<h2>Demo</h2>
</div>
<div class="form-group">
<label>All Characters, Options <code>passCharSet: "a-z,A-Z,0-9,#"</code></label>
<div class="input-group" id="test1">
<input type="text" class="form-control" data-size="5">
<div class="input-group-btn">
<button class="btn btn-success" type="button">Refresh</button>
</div>
</div>
</div>
<div class="form-group">
<label>Lower Letters Only, Options <code>passCharSet: "a-z"</code></label>
<div class="input-group" id="test2">
<input type="text" class="form-control">
<div class="input-group-btn">
<button class="btn btn-success" type="button">Refresh</button>
</div>
</div>
</div>
<div class="form-group">
<label>Upper Letters Only, Options <code>passCharSet: "A-Z"</code></label>
<div class="input-group" id="test3">
<input type="text" class="form-control">
<div class="input-group-btn">
<button class="btn btn-success" type="button">Refresh</button>
</div>
</div>
</div>
<div class="form-group">
<label>Numbers Only, Options <code>passCharSet: "0-9"</code></label>
<div class="input-group" id="test4">
<input type="text" class="form-control">
<div class="input-group-btn">
<button class="btn btn-success" type="button">Refresh</button>
</div>
</div>
</div>
<div class="form-group">
<label>Symbols Only, Options <code>passCharSet: "#"</code></label>
<div class="input-group" id="test5">
<input type="text" class="form-control">
<div class="input-group-btn">
<button class="btn btn-success" type="button">Refresh</button>
</div>
</div>
</div>
</section>
</div>
</div>
<footer class="footer">
<div class="container">
<p>© 2017 Strong Password Generator | Made with <i class="glyphicon glyphicon-heart text-danger"></i> By <span class="author"></span></p>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script type="text/javascript" src="assets/js/bootstrap.min.js"></script>
<script type="text/javascript" src="assets/js/StrongPass.min.js"></script>
<script type="text/javascript">
$('#test1').generatePassword();
$('#test2').generatePassword({
passCharSet: "a-z",
});
$('#test3').generatePassword({
passCharSet: "A-Z",
});
$('#test4').generatePassword({
passCharSet: "0-9",
});
$('#test5').generatePassword({
passCharSet: "#",
});
</script>
</body>
</html>