pages/forum/index.html
2025-04-15 16:17:04 -04:00

36 lines
1 KiB
HTML

<!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>