24 lines
446 B
HTML
24 lines
446 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Admin login{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1>Admin login</h1>
|
|
|
|
{% if error %}
|
|
<p>{{ error }}</p>
|
|
{% endif %}
|
|
|
|
<form method="post" action="/admin/login">
|
|
<label>
|
|
Email
|
|
<input type="email" name="email" required>
|
|
</label>
|
|
<label>
|
|
Password
|
|
<input type="password" name="password" required>
|
|
</label>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
{% endblock content %}
|