-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 loc) · 969 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
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title>Password Generator</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<h1>Password Generator</h1>
<div class="password_header">
<input type="text" id="Password">
<button id="copy">Copy</button>
</div>
<div class="Password_body">
<div class="form">
Password length
<input type="number" id="password-length" value = "8" min="5" max="25">
</div>
<div class="form">
Include Lowercase
<input type="checkbox" id="password-lowercase">
</div>
<div class="form">
Include Uppercase
<input type="checkbox" id="password-uppercase">
</div>
<div class="form">
Include Numbers
<input type="checkbox" id="password-number">
</div>
<div class="form">
Include symbols
<input type="checkbox" id="password-character">
</div>
<div>
<button id="submit">Generate</button>
</div>
</div>
</div>
</body>
<script src="logic.js"></script>
</html>