-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathauth.html
More file actions
76 lines (67 loc) · 4.28 KB
/
auth.html
File metadata and controls
76 lines (67 loc) · 4.28 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
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Authentication</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Michroma&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="/assets/favicon.svg">
<!-- Firebase SDKs -->
<script src="https://www.gstatic.com/firebasejs/9.6.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.0/firebase-auth-compat.js"></script>
</head>
<body>
<div style="width: 100%; max-width: 600px; display: flex; flex-direction: column; align-items: center;">
<a style="text-decoration: none;" href="https://metascanner.site">
<h1>METASCANNER</h1>
</a>
<p>METADATA ANALYSIS AVAILABLE ONLY THROUGH SECURE CHANNELS</p>
</div>
<!-- Authentication Section -->
<div class="auth-section">
<div id="userStatus" class="auth-status">
<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" class="lucide lucide-user-x" style="vertical-align: middle; margin-right: 5px;"><path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><line x1="17" x2="22" y1="8" y2="13"/><line x1="22" x2="17" y1="8" y2="13"/></svg>
UNAUTHORIZED ACCESS. PLEASE LOG IN.
</div>
<div id="authForms">
<div class="auth-input-group">
<input type="email" id="emailInput" placeholder="ENTER EMAIL ADDRESS" required>
<input type="password" id="passwordInput" placeholder="ENTER PASSWORD" required>
<label style="color: rgb(235, 38, 38);">
<input class="custom-checkbox" type="checkbox" id="showPasswordCheckbox">
SHOW PASSWORD
</label>
</div>
<div class="button-group auth-buttons">
<button id="signUpBtn">
<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" class="lucide lucide-user-plus"><path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><line x1="19" x2="19" y1="8" y2="14"/><line x1="22" x2="16" y1="11" y2="11"/></svg>
SIGN UP
</button>
<button id="signInBtn">
<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" class="lucide lucide-log-in"><path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"/><polyline points="10 17 15 12 10 7"/><line x1="15" x2="3" y1="12" y2="12"/></svg>
SIGN IN
</button>
</div>
</div>
<div id="loggedInControls" class="hidden button-group auth-buttons">
<button id="signOutBtn">
<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" class="lucide lucide-log-out"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"/><polyline points="17 16 22 12 17 8"/><line x1="22" x2="10" y1="12" y2="12"/></svg>
SIGN OUT
</button>
</div>
<div>
<a style="text-decoration: none; color: azure; text-transform: uppercase;" href="https://www.metascanner.site/terms-of-service">Terms & Conditions</a>
</div>
</div>
<!-- END Authentication Section -->
<!-- Message box for status and errors -->
<div id="messageBox" class="hidden" role="alert"></div>
<footer class="footer-section">
<div style="font-size: 0.75rem; font-family: 'Share Tech Mono', monospace;">METASCANNER © 2025 | MADE WITH ❤️ BY <span style="margin-left: 2px;"><a style="text-decoration: none; color: #00ff00;" href="https://www.metascanner.site/contributors">TEAM DELTA</a></span></div>
</footer>
<!-- Custom JavaScript -->
<script type="module" src="/src/auth.js"></script>
</body>
</html>