-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 952 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Password Generator</title>
<script src="script.js" defer></script>
<link rel="stylesheet" href="styles/style.css">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
</head>
<body>
<h1>🔒 Password Generator 🔒</h1>
<h3>by metju</h3>
<p>Length:</p>
<output>16</output>
<input
type="range"
min="8"
max="24"
value="16"
step="2"
id="slider"
oninput="this.previousElementSibling.value = this.value"
/>
<label for="extra">Extra characters<br>
<input type="checkbox" name="extra" id="extra">
</label>
<button id="generate">GENERATE</button>
<p id="password" style="visibility: hidden;">password</p>
<p id="copied" style="visibility: hidden;">Copied to clipboard!</p>
</body>
</html>