15 lines
492 B
HTML
15 lines
492 B
HTML
{%- import "utils.html" as utils with context -%}
|
|
{% extends "layout.html" %}
|
|
{% block content %}
|
|
<div style="display:grid;height:80%;">
|
|
<div style="margin:auto;">
|
|
<form class="form" action="/admin/login" method="POST">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
|
|
<input type="hidden" name="redirect" value="{{ redirect }}">
|
|
<input type="password" placeholder="password" name="password" autofocus>
|
|
<input type="submit" value="login">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|