-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1.13 KB
/
index.html
File metadata and controls
35 lines (31 loc) · 1.13 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<h1>Password generator</h1>
<div id="inputContainer">
<label id="myLabel">Choose the size of the password</label><br>
<input type="number" id="passLength" min="1" value="8">
</div>
<div id="optionsContainer">
<input type="checkbox" id="lcCheckbox">
<label id="myLabel2">Include lowercase chars</label><br>
<input type="checkbox" id="ucCheckbox">
<label id="myLabel3">Include uppercase chars</label><br>
<input type="checkbox" id="numCheckbox">
<label id="myLabel4">Include numbers</label><br>
<input type="checkbox" id="symCheckbox">
<label id="myLabel5">Include symbols</label><br>
</div>
<button id="myBtn">Generate password</button>
<div id="resultContainer"></div>
</div>
<script defer src="index.js"></script>
</body>
</html>