26 lines
No EOL
717 B
HTML
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> |