-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (45 loc) · 1.52 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
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<title>password generator</title>
</head>
<body>
<div class="pg-container">
<div class="pg-header">
<div class="pg-txt">
<span id="password_txt">scs45425s4cv4</span>
<button id="pg-btn">
Click to Copy
</button>
</div>
</div>
<div class="pg-body">
<div class="pg-control">
<label for="length">LENGTH</label>
<input type="number" min="4" max="20" id="length" value="4">
</div>
<div class="pg-control">
<label for="upper">UPPERCASE</label>
<input type="checkbox" name="a" id="upper">
</div>
<div class="pg-control">
<label for="lower">LOWERCASE</label>
<input type="checkbox" name="a" id="lower">
</div>
<div class="pg-control">
<label for="number">NUMBER</label>
<input type="checkbox" name="a" id="number">
</div>
<div class="pg-control">
<label for="symbol">SYMBOL</label>
<input type="checkbox" name="a" id="symbol">
</div>
</div>
<button id="generator">Generate Password</button>
</div>
<script src="main.js"></script>
</body>
</html>