mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 21:53:40 -05:00
Create index.html
This commit is contained in:
parent
a1e2a73419
commit
37c699e7c2
1 changed files with 36 additions and 0 deletions
36
forum/index.html
Normal file
36
forum/index.html
Normal 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>
|
Loading…
Add table
Reference in a new issue