Create index.html

This commit is contained in:
Voxel 2025-04-15 16:17:04 -04:00 committed by GitHub
parent a1e2a73419
commit 37c699e7c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

36
forum/index.html Normal file
View file

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MilkBoard</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>MilkBoard</h1>
<div id="auth-links">
<a href="auth.html">Login/Register</a>
</div>
</header>
<main>
<section id="post-list">
<!-- Posts will be displayed here dynamically -->
</section>
<section id="new-post">
<h2>Create</h2>
<textarea id="post-content" placeholder="Write your post here..." disabled></textarea>
<button id="post-submit" disabled>Submit Post</button>
</section>
</main>
<footer>
<a href="/"><img src="/assets/img/88x31.png" loading="lazy" width="88" height="31"></a>
<a href="/"><img src="/assets/img/88x31_light.png" loading="lazy" width="88" height="31"></a>
</footer>
<script src="script.js"></script>
</body>
</html>