Anarchy_Streaming/pages/landing.html
2023-02-18 13:26:58 -05:00

32 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Anarchy Streaming.</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>
<a class="news-link" href="/news">News</a>
</div>
<div class="title-wrapper">
<h1 class="title">Anarchy Streaming</h1>
</div>
<div class="subtitle-wrapper">
<p class="subtitle">Your favorite content creator's paradise</p>
</div>
<div class="login-form-wrapper">
<form class="login-form" action="/members" method="POST">
<input type="text" class="username" name="username" placeholder="Username" /><br/><br/>
<input type="password" class="password" name="password" placeholder="Password" /><br/><br/>
<input type="submit" class="submit" name="submit" value="Login" /><br/><br/>
<button class="registration-button"><a class="sign-up-link" href="/register">Sign Up</a></button>
</form>
</div>
</div>
</body>
</html>