-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassword.html
58 lines (55 loc) · 1.82 KB
/
password.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
<!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" />
<title>Password Generator App</title>
<link rel="stylesheet" href="password.css" />
<script src="./password.js" defer></script>
<script
src="https://kit.fontawesome.com/7a4b62b0a4.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="container">
<div class="box">
<section class="upper">
<h1>
<i class="fa fa-lock" style="color: rgb(15, 62, 217)"> </i>
Password Generator
</h1>
<div id="password"></div>
<div class="range_container">
<label for="range">
Password Length <span id="passRangeValue">8</span>
</label>
<input
type="range"
min="1"
max="20"
value="8"
id="passRangeInput"
/>
</div>
<div class="checkboxes">
<div class="form_control">
<label for="uppercase"> Inlude uppercase</label>
<input type="checkbox" name="uppercase" id="uppercase" />
</div>
<div class="form_control">
<label for="numbers"> Inlude numbers</label>
<input type="checkbox" name="numbers" id="numbers" />
</div>
<div class="form_control">
<label for="symbols"> Inlude symbols</label>
<input type="checkbox" name="symbols" id="symbols" />
</div>
</div>
</section>
<button id="genBtn">Generate Password</button>
</div>
</div>
</body>
</html>