-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 859 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<meta name="author" content="Cedric Che-Azeh" />
<meta charset="utf8" />
<title>Check Password Strength</title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
<script src="js/jquery.js"></script>
<script src="js/password-strength.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<div class="col-sm-6 col-sm-offset-3 text-center">
<div class="progress">
<div class="progress-bar" role="progressbar">
</div>
</div>
<form method="post" action="">
<input type="password" placeholder="Enter password" name="password" />
<button class="btn btn-primary">Submit</button>
</form>
</div>
</body>
</html>