-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (49 loc) · 2.41 KB
/
index.html
File metadata and controls
50 lines (49 loc) · 2.41 KB
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
<html>
<head>
<!--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=Karla:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
</head>
<body>
<div id="main-section">
<div id="sub-section-1">
<h1 id="main-title">Generate a <br><span class="green-text">random password</span></h1>
<h2>Never use an insecure password again.</h2>
<div id="ss1-btns">
<button id="gen-btn">Generate passwords</button>
<div id="ss1-settings">
<div class="settings-display">
<p class="settings-text">Set length</p>
<input class="settings" type="number" min="8" max="15" placeholder="8">
</div>
<div class="settings-display">
<p class="settings-text">Numbers</p>
<label class="switch">
<input id="include-numbers" type="checkbox">
<span class="slider round"></span>
</label>
</div>
<div class="settings-display">
<p id="sp-characters" class="settings-text">Symbols</p>
<label class="switch">
<input id="include-symbols" type="checkbox">
<span class="slider round"></span>
</label>
</div>
</div>
</div>
</div>
<div id="sub-section-2">
<button class="pwd-btn" id="pwd-el-one"></button>
<button class="pwd-btn" id="pwd-el-two"></button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>