376chan/pages/home.html
2023-01-30 21:24:04 -05:00

30 lines
930 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>376chan</title>
<link rel="stylesheet" type="text/css" href="./../styles/styles.css" />
</head>
<body>
<div class="whole-wrapper">
<div class="nav-wrapper">
<a class="home-link" href="/">Home</a>
<a class="about-link" href="/about">About</a>
</div>
<div class="home-title-wrapper">
<h1 class="home-title">/376chan</h1>
</div>
<div class="home-subtitle-wrapper">
<p class="home-subtitle">The sapiocentric imageboard.</p>
</div>
<div class="login-wrapper">
<form action="./../sys/login.js" method="POST" class="login">
<input type="text" class="username" id="username" placeholder="Username" /><br/><br/>
<input class="password" type="password" id="password" placeholder="Password" /><br/><br/>
<input type="submit" class="login-button" value="Log in" />
</form>
</div>
</div>
</body>
</html>