19 lines
460 B
HTML
19 lines
460 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>Login</h1>
|
|
{% if let Some(err) = error %}
|
|
<p class="error">{{ err }}</p>
|
|
{% endif %}
|
|
<form method="POST" action="/login">
|
|
<label>
|
|
Email<br>
|
|
<input type="email" name="email" required autocomplete="email">
|
|
</label>
|
|
<label>
|
|
Password<br>
|
|
<input type="password" name="password" required autocomplete="current-password">
|
|
</label>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
{% endblock %}
|