-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (33 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="js/modules/zxcvbn.js"></script>
<script src="js/script.js" defer></script>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1" >
<meta charset="UTF-8">
<title>Password Strength</title>
</head>
<body>
<main>
<h1>How strong is your password?</h1>
<p>You can trust us, your password is processed locally and safe.</p>
<div class='password-container'>
<p class='password-container__char-count js-char-count'>0</p>
<input class='password-container__input js-password-input' type='password'>
<button id='new-quote' aria-label='Generate new quote' class='password-container__show-button js-show-password-button'>
<i class='ti ti-eye-closed'></i>
</button>
</div>
<div class='hidden result-container js-result'>
<p class='js-score'>STRONG</p>
<hr>
<p>It would take <b class='js-crack-time'>3 million years</b> to crack your password</p>
<hr>
<p class='js-warning'></p>
<p class='js-suggestions-label'></p>
</div>
</main>
</body>
</html>