-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (46 loc) · 1.75 KB
/
index.html
File metadata and controls
52 lines (46 loc) · 1.75 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" />
<title>CryptaWolf — Matrix Red</title>
<link rel="stylesheet" href="CSS/style_hidden.css">
</head>
<body>
<!-- Matrix background -->
<canvas id="matrixCanvas" aria-hidden="true"></canvas>
<!-- UI -->
<div class="container">
<div class="card">
<div class="logo">
<img src="wolf1.png" alt="Logo">
</div>
<h1 class="title">CryptaWolf</h1>
<p class="tagline">Real-time strength check, <br />breach detection,<br /> and smart tips for safer credentials.</p>
<div class="input-wrap">
<input id="passwordInput" type="password" autocomplete="new-password" placeholder="Enter password">
<button id="toggleEye" class="eye-btn" aria-label="Show password">👁️</button>
</div>
<div class="strength-row">
<div class="strength-bar" aria-hidden="true">
<div id="strengthFill" class="strength-fill"></div>
</div>
<div id="strengthText" class="strength-text">Enter a password to check strength</div>
</div>
<div class="suggestions-card" aria-live="polite">
<div class="suggest-title">Suggestions</div>
<ul id="suggestions" class="suggestions-list">
<li class="placeholder">Type a password to see dynamic suggestions...</li>
</ul>
</div>
<div class="actions">
<button id="generateBtn" class="btn">Generate</button>
<button id="checkPwned" class="btn muted">Check Breached</button>
<div id="pwnedResult" class="pwned-result" aria-live="polite"></div>
</div>
</div>
</div>
<script src="js/matrix.js"></script>
<script src="js/script.js"></script>
</body>
</html>