-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (54 loc) · 2.27 KB
/
Copy pathindex.html
File metadata and controls
59 lines (54 loc) · 2.27 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SecurePassCraft: Secure Password Generator</title>
<script type="module" src="js/index.js"></script>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/png" href="images/favicon.png" />
<meta name="description"
content="Generate strong, unique passwords with SecurePassCraft — fast, secure, no guesswork.">
</head>
<body>
<div>
<h1 class="hero-title">SecurePassCraft
<br />
<span class="hero-accent">Password Generator</span>
</h1>
<h2 class="hero-subtitle"> No guesswork. Strong passwords. </h2>
<div>
<div class="btn-wrapper">
<div class="length-selector">
<label for="passwordLength" class="length-label">Password Length:</label>
<select id="passwordLength" class="length-select">
<option value="moderate">Moderate - 15 characters</option>
<option value="default" selected>Default - 20 characters</option>
<option value="strong">Strong - 24 characters</option>
<option value="highSecurity">High Security - 32 characters</option>
<option value="quantumResistant">Quantum Resistant - 40 characters</option>
</select>
</div>
<button class="generate-btn" id="generateButton">Generate Passwords</button>
</div>
<div class="divider-wrapper">
<hr class="divider" />
</div>
<div class="password-wrapper">
<div class="passwords">
<output class="password" id="password0"></output>
<output class="password" id="password1"></output>
</div>
</div>
<dialog id="messageModal">
<div class="modal-content">
<p>Password copied to clipboard! (tap to close)</p>
</div>
</dialog>
</div>
</div>
</body>
<footer>
<p>Created by <a href="https://github.com/chrisjabb21" target="_blank">Chris Fouad Jabbour</a></p>
</footer>
</html>