rave/rave/templates/login.html
Lyssieth 4a746a3371
feat: basic UI stuff I think
I gotta do a lot more, but just pushing to
ctrl+s my code.
2023-10-14 19:03:20 +03:00

26 lines
No EOL
717 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rave | Login</title>
<link rel="stylesheet" href="css/login.css">
</html>
<body>
<h1>Login</h1>
{%- if let Some(message) = &self.message { -%}
<p>Message: {{message}}</p>
{%- } -%}
<div>
<form action="/login" method="post">
<label for="username">Username</label>
<input type="text" name="username" id="username" placeholder="AzureDiamond" required>
<label for="password">Password</label>
<input type="password" name="password" id="password" placeholder="hunter2" required>
<input type="submit" value="Login">
</form>
</div>
</body>