-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (43 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="script.js" defer></script>
<link rel="stylesheet" href="styles.css" />
<title >Password Generator</title>
</head>
<body>
<div class="container">
<h1 class="title">Password Generator</h1>
<h3 class="password-disp" id="passwordDisplay">password</h3>
<form id="passwordgenerator" class="form">
<label for="characterAmountNumber">Number of Characters</label>
<div class="character-amount-container">
<input
type="range"
min="1"
max="50"
value="10"
id="characterAmountRange"
/>
<input
type="number"
min="1"
max="50"
value="10"
id="characterAmountNumber"
class="number-input"
/>
</div>
<label for="includeuppercase">Include Uppercase </label>
<input type="checkbox" id="includeuppercase" />
<label for="includenumbers">Include Numbers </label>
<input type="checkbox" id="includenumbers" />
<label for="includesymbols">Include symbols </label>
<input type="checkbox" id="includesymbols" />
<button type="submit" class="btn">Generate Password</button>
</form>
</div>
</body>
</html>