-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 2.42 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
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Generator</title>
<link rel="stylesheet" href="assets/css/style.css" />
<script src="assets/js/script.js"></script>
</head>
<body>
<div class="container">
<h1>Password Generator</h1>
<div class="password-container">
<input type="text" id="password" readonly>
<button id="copyButton">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect>
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path>
</svg>
</button>
<span class="copied-message">Copied to clipboard!</span>
</div>
<div class="strength-meter">
<div class="strength-meter-fill"></div>
</div>
<div class="strength-text"></div>
<div class="slider-container">
<label for="length">Password Length: <span id="lengthValue">12</span></label>
<input type="range" id="length" min="8" max="128" value="12">
</div>
<div class="options">
<div class="option">
<input type="checkbox" id="uppercase" checked>
<label for="uppercase">Uppercase</label>
</div>
<div class="option">
<input type="checkbox" id="lowercase" checked>
<label for="lowercase">Lowercase</label>
</div>
<div class="option">
<input type="checkbox" id="numbers" checked>
<label for="numbers">Numbers</label>
</div>
<div class="option">
<input type="checkbox" id="symbols">
<label for="symbols">Symbols</label>
</div>
</div>
<button id="generateButton">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21.5 2v6h-6M21.34 15.57a10 10 0 1 1-.57-8.38"/>
</svg>
Generate Password
</button>
</div>
</body>
</html>