-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (76 loc) · 3.49 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
<!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</title>
<link rel="stylesheet" href="./style/style.css">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,400;0,600;1,700&display=swap" rel="stylesheet">
<!-- Google Icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<!-- Script with defer: Run the script only when the HTML parsing is finished. -->
<script src="./js/script.js" defer></script>
</head>
<body>
<div class="container">
<h2>Password Generator</h2>
<div class="wrapper">
<div class="input-box">
<input type="text" id="password-list" disable>
<div class="password-icons">
<div class="visibility">
<span
class="material-symbols-outlined">visibility</span>
</div>
<div class="copy_all">
<span class="material-symbols-outlined">copy_all</span>
</div>
</div>
</div>
<div class="password-indicator"></div>
<div class="password-length">
<div class="details">
<label class="title">Password Length</label>
<span></span>
</div>
<input class="lengthRange" type="range" min="1" max="30" step="1">
</div>
<div class="password-settings">
<label class="title">Password Settings</label>
<ul class="options">
<li class="option">
<input type="checkbox" name="Lowercase" id="lowercase" checked>
<label for="lowercase">Lowercase (a-z)</label>
</li>
<li class="option">
<input type="checkbox" name="Uppercase" id="uppercase">
<label for="uppercase">Uppercase (A-Z)</label>
</li>
<li class="option">
<input type="checkbox" name="Numbers" id="numbers">
<label for="numbers">Numbers (0-9)</label>
</li>
<li class="option">
<input type="checkbox" name="Symbols" id="symbols">
<label for="symbols">Symbols (!-$^+)</label>
</li>
<li class="option">
<input type="checkbox" name="Exclude Duplicate" id="exclude-duplicate">
<label for="exclude-duplicate">Exclude Duplicate</label>
</li>
<li class="option">
<input type="checkbox" name="Include Spaces" id="include-spaces">
<label for="include-spaces">Include Spaces</label>
</li>
</ul>
</div>
<button class="generate-btn">Generate Password</button>
</div>
</div>
<!-- <script src="./js/script.js" defer></script> -->
</body>
</html>