Ulises Gascón 9dd233c371
WIP
2024-03-25 00:59:06 +01:00

36 lines
1.1 KiB
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Whispering | register</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="menu">
<ul>
<li><a href="/">Whispering</a></li>
</ul>
</nav>
<main>
<h1>Create your account!</h1>
<form id="sigup">
<label for="username">Username</label>
<input type="text" id="username" name="username" placeholder="Your username" required />
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Your email" required />
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Your password" required />
<button type="submit">Sign up</button>
</form>
<p>Already have an account? <a href="/login">Login</a></p>
</main>
<script src="auth.js"></script>
</body>
</html>