-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (30 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="script.js" defer></script>
<link rel="stylesheet" href="style.css">
<title>Password Generator</title>
</head>
<body>
<div class="container">
<h1 class="title">Random Password Generator</h1>
<div class="password">
<input type="text" id="password">
</div>
<form id="form" class="form">
<label for="includeLowercase">Included Lowercase</label>
<input type="checkbox" id="includeLowercase" checked disabled>
<label for="includeUppercase">Included Uppercase</label>
<input type="checkbox" id="includeUppercase" checked disabled>
<label for="includeNumbers">Included Numbers</label>
<input type="checkbox" id="includeNumbers" checked disabled>
<label for="includeSymbols">Included symbols</label>
<input type="checkbox" id="includeSymbols"checked disabled>
</form>
<button type="submit" class="btn" id="generate" onclick="generatePassword();">GENERATE</button>
</div>
</body>
</html>