-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
38 lines (38 loc) · 1.41 KB
/
Copy pathadmin.html
File metadata and controls
38 lines (38 loc) · 1.41 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin - jazhdo</title>
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/darkmode.css">
<link rel="icon" href="/icon.png">
</head>
<body>
<header>
<div id="header-top">
<a href="/" draggable="false" class="toptitle">jazhdo</a>
<a href="/login.html" id="login-link"></a>
</div>
<nav>
<a href="/" draggable="false" class="navbutton">Home</a>
<a href="/blog/" draggable="false" class="navbutton">Blog</a>
<a href="/contact.html" draggable="false" class="navbutton">Contact</a>
<a href="/about.html" draggable="false" class="navbutton">About</a>
</nav>
</header>
<div id="main">
<h1 id="adminTitle" style="display: none;">Admin Page</h1>
<a id="goBack" href="/login.html" style="display: none;">Back</a>
<p id="message-bottom"></p>
</div>
<footer>
<h2 style="display: none;">Footer:</h2>
<p id="darktest" class="footer">Updated: 1/16/2026 - jazhdo</p>
<a class="footer" href="/privacy.html">Privacy</a>
<a class="footer" href="/terms.html">Terms</a>
<script type="module" src="/backend.js"></script>
<script src="/script.js"></script>
</footer>
</body>
</html>