-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (71 loc) · 2.35 KB
/
index.html
File metadata and controls
71 lines (71 loc) · 2.35 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!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">
<script src="https://kit.fontawesome.com/d6a8ce8d77.js" crossorigin="anonymous"></script>
<title>Document</title>
</head>
<body>
<div class="container">
<h2 class="title">Password Generator</h2>
<div class="result">
<div class="result-title field-title">
Generated Password
</div>
<div class="result-info right">
click to copy
</div>
<div class="result-info left">
copied
</div>
<div class="result-veiwbox" id="result">
CLICK GENERATE
</div>
<button id="copy-btn" style="--x: 0; --y: 0">
<i class="far fa-copy"></i>
</button>
</div>
<div class="length range-slider" data-min="8" data-max="20">
<div class="length-title field-title" data-length="0">
length:
</div>
<input type="range" id="slider" min="8" max="20" value="8">
</div>
<div class="settings">
<span class="setting-title field-title">
setting
</span>
<div class="setting">
<input type="checkbox" id="uppercase" checked>
<label for="uppercase">
Include Uppercase
</label>
</div>
<div class="setting">
<input type="checkbox" id="lowercase" checked>
<label for="lowercase">
Include Lowercase
</label>
</div>
<div class="setting">
<input type="checkbox" id="number" checked>
<label for="number">
Include Numbers
</label>
</div>
<div class="setting">
<input type="checkbox" id="symbol" checked>
<label for="symbol">
Include Symbols
</label>
</div>
<button class="btn generate" id="generate">
Generate Password
</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>