-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (72 loc) · 2.64 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Password Generator</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="manifest" href="manifest.json" />
<link rel="apple-touch-icon" sizes="180x180" href="sapple-touch-icon.png" />
<link rel="stylesheet" href="src/style.css">
<link rel="stylesheet" href="src/responsiveStyle.css">
<script src="src/app.js" async></script>
</head>
<body>
<ul class="color-pallete">
<!-- Adding them Dynamically -->
</ul>
<header>
<h1>
<span class="heading">
<span> </span> Password <span> </span>
</span>
<span class="text-outline">
Generator
</span>
</h1>
</header>
<div class="container">
<aside>
<input type="text" name="Generated Password" id="passwordInput" placeholder="Password Generator">
<div class="button-container">
<button class="btn" id="clipboardButton">
Copy
</button>
<button class="btn" id="generateButton">
Generate
</button>
<button class="btn" id="resetButton">
Reset
</button>
</div>
</aside>
<div class="line"></div>
<div class="options-container">
<div class="lengthInput-container">
<label>
Password Length [(6-12) characters could be a good practice]
</label>
<div class="lengthInput">
<input type="number" name="Input Length for Password" id="lengthInput" value=6>
<input type="range" name="length" id="length" min="6" max="14">
</div>
</div>
<label>
Include Upercase Letters from (A-Z)
<input type="checkbox" name="Checkbox for Uppercase" id="uppercaseCheckbox" checked>
</label>
<label>
Include Lowercase Letters from (a-z)
<input type="checkbox" name="Checkbox for Lowercase" id="lowercaseCheckbox" checked>
</label>
<label>
Include Numbers (0-9)
<input type="checkbox" name="Checkbox for Number" id="numberCheckbox" checked>
</label>
<label>
Include Special Characters: (!@#$)
<input type="checkbox" name="Checkbox for Special Characters" id="specialCheckbox" checked>
</label>
</div>
</div>
</body>
</html>