-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="style.css" />
<script defer src="/script.js"></script>
<title>Password Strength Background</title>
</head>
<body>
<div class="background" id="background"></div>
<div class="container">
<h1>Image Password Strength</h1>
<h3>change the password to see the effect</h3>
<div class="email">
<label for="email">Email</label>
<input type="email" placeholder="Your email" id="email" />
</div>
<div class="password">
<label for="password">Password</label>
<input type="password" placeholder="Your password" id="password" />
</div>
<button class="button" id="submit">Submit</button>
</div>
</body>
</html>