-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
138 lines (138 loc) · 2.73 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html
lang="en"
dir="ltr"
>
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
http-equiv="X-UA-Compatible"
content="ie=edge"
/>
<title>PASS GEN</title>
<meta
name="author"
content="Rupam Barui"
/>
<meta
name="description"
content="Random Password generator"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./favicon/favicon-16x16.png"
/>
<link
rel="manifest"
href="./favicon/site.webmanifest"
/>
<link
rel="stylesheet"
href="style.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200"
/>
</head>
<body>
<div class="container">
<h2>Password Generator</h2>
<div class="wrapper">
<div class="input-box">
<input
type="text"
disabled
/>
<span class="material-symbols-rounded">copy_all</span>
</div>
<div class="pass-indicator"></div>
<div class="pass-length">
<div class="details">
<label class="title">Password Length</label>
<span></span>
</div>
<input
type="range"
min="8"
max="30"
step="1"
value="15"
/>
</div>
<div class="pass-settings">
<label class="title">Password Settings</label>
<ul class="options">
<li class="option">
<input
type="checkbox"
id="lowercase"
checked
/>
<label for="lowercase">Lowercase (a-z)</label>
</li>
<li class="option">
<input
type="checkbox"
id="uppercase"
/>
<label for="uppercase">Uppercase (A-Z)</label>
</li>
<li class="option">
<input
type="checkbox"
id="numbers"
/>
<label for="numbers">Numbers (0-9)</label>
</li>
<li class="option">
<input
type="checkbox"
id="symbols"
/>
<label for="symbols">Symbols (!@£$%^&*)</label>
</li>
<li class="option">
<input
type="checkbox"
id="exc-duplicate"
/>
<label for="exc-duplicate"
>Exclude Duplicates</label
>
</li>
<li class="option">
<input
type="checkbox"
id="spaces"
/>
<label for="spaces">Include Spaces</label>
</li>
</ul>
</div>
<button class="generate-btn">Generate Password</button>
</div>
</div>
<script
src="script.js"
defer
></script>
</body>
</html>