-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (50 loc) · 1.98 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
<!doctype html>
<html lang="en-US">
<head>
<title>gilgeekify</title>
<meta charset="utf-8">
<!-- <meta http-equiv="refresh" content="1"> -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu">
<link rel="stylesheet" href="style.css">
</head>
<body class="bg-color-animation">
<div class="main">
<img class="logo" src="https://cdn.pixabay.com/photo/2016/11/09/11/42/hacker-1811568_960_720.png">
<h1>Safe Password Generator Web App</h1>
<div class="app">
<input type="text" id="result" placeholder="----------------" readonly>
<hr>
<h2><i class="bi bi-key-fill"></i> Password Length</h2>
<div class="row">
<input id="password-length" type="number" value="16" min="1" max="100">
</div>
<hr>
<h2><i class="bi bi-shield-lock-fill"></i> Options</h2>
<div class="row">
<label>
<input type="checkbox" id="uppercase-option" checked>
<span>Uppercase</span>
</label>
<label>
<input type="checkbox" id="lowercase-option" checked>
<span>Lowercase</span>
</label>
<label>
<input type="checkbox" id="numbers-option" checked>
<span>Numbers</span>
</label>
<label>
<input type="checkbox" id="symbols-option" checked>
<span>Symbols</span>
</label>
</div>
<div class="generate-btn-row">
<span id="generate-btn"><i class="bi bi-magic"></i> Generate</span>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>