gathering
Version:
A social event management platform
24 lines (23 loc) • 480 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
</head>
<body>
<form action="/auth/local" method="POST">
<p>
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Email">
</p>
<p>
<label for="password">Email</label>
<input type="password" id="password" name="password" placeholder="password">
</p>
<p>
<input type="submit">
</p>
<p class="error"></p>
</form>
</body>
</html>