- Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
35 lines (31 loc) · 1.25 KB
/
Copy pathindex.html
File metadata and controls
35 lines (31 loc) · 1.25 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
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<metaname="viewport" content="width=device-width, initial-scale=1.0">
<metahttp-equiv="X-UA-Compatible" content="ie=edge">
<scriptsrc="script.js" defer></script>
<linkrel="stylesheet" href="styles.css">
<title>Password Generator</title>
</head>
<body>
<divclass="container">
<h1class="title">Password Generator</h1>
<h3class="password-display" id="passwordDisplay">password</h3>
<formid="passwordGeneratorForm" class="form">
<labelfor="characterAmountNumber">Number Of Characters</label>
<divclass="character-amount-container">
<inputtype="range" min="1" max="50" value="10" id="characterAmountRange">
<inputclass="number-input" type="number" min="1" max="50" value="10" id="characterAmountNumber">
</div>
<labelfor="includeUppercase">Include Uppercase</label>
<inputtype="checkbox" id="includeUppercase">
<labelfor="includeNumbers">Include Numbers</label>
<inputtype="checkbox" id="includeNumbers">
<labelfor="includeSymbols">Include Symbols</label>
<inputtype="checkbox" id="includeSymbols">
<buttontype="submit" class="btn">Generate Password</button>
</form>
</div>
</body>
</html>