-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (36 loc) · 1.4 KB
/
index.html
File metadata and controls
45 lines (36 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>🔐 UltraLock 🔐</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Top-left logo -->
<div class="top-left">🔐 UltraLock 🔐</div>
<!-- Center container -->
<div class="fullscreen-container">
<p class="subtitle">🔑 Your secure and stylish password generator 💪</p>
<!-- Password length input -->
<input id="length" type="number" min="4" max="64" value="12" class="input-box" placeholder="Length">
<!-- Options -->
<div class="checkboxes">
<label><input type="checkbox" id="symbols" checked> Symbols</label>
<label><input type="checkbox" id="numbers" checked> Numbers</label>
<label><input type="checkbox" id="uppercase" checked> Uppercase</label>
</div>
<!-- Generate button -->
<button id="generate" class="btn-generate">Generate 🔑</button>
<!-- Output -->
<input id="output" readonly class="output-box" placeholder="Your password will appear here 😎">
<!-- Copy button -->
<button id="copy" class="btn-copy">Copy 📋</button>
</div>
<!-- Bottom-right footer with GitHub link -->
<div class="bottom-right">
Made by <a href="https://github.com/dante-el-gamer" target="_blank">@dante-el-gamer</a>
</div>
<script src="script.js"></script>
</body>
</html>