-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (50 loc) · 1.73 KB
/
index.html
File metadata and controls
52 lines (50 loc) · 1.73 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!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="./style.css" />
<title> Password Generator</title>
</head>
<body>
<div class="container">
<h2>Strong password Generator</h2>
<span id="result"></span>
<div class="result-container">
<button class="btn" id="clipboard">
Copy
</button>
</div>
<div class="settings">
<div class="setting ">
<label >Length</label>
<input type="number" id="length" min="4" max="20" value="20" >
</div>
<div class="setting checkbox-wrapper-14">
<label for="uppercase">Include uppercase letters</label>
<input type="checkbox" id="uppercase" checked class="switch">
</div>
<div class="setting checkbox-wrapper-14">
<label for="lowercase">Include lowercase letters</label>
<input type="checkbox" id="lowercase" checked class="switch">
</div>
<div class="setting checkbox-wrapper-14">
<label for="numbers">Include numbers</label>
<input type="checkbox" id="numbers" checked class="switch">
</div>
<div class="setting checkbox-wrapper-14">
<label for="symbols">Include symbols</label>
<input type="checkbox" id="symbols" checked class="switch">
</div>
<div class="text">
<label>Include text</label>
<input type="text" id="text" class="input_class">
</div>
<button class="btn btn-large" id="generate">
Generate Password
</button>
</div>
</div>
<script src="./main.js"></script>
</body>
</html>