Anarchy_Streaming/pages/landing.html

32 lines
1.1 KiB
HTML
Raw Normal View History

2023-02-18 18:10:28 +01:00
<!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>
2023-02-18 19:26:58 +01:00
<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>
2023-02-18 18:10:28 +01:00
</div>
</body>
</html>