2022-06-22 13:11:22 -05:00
|
|
|
{%- import "utils.html" as utils with context -%}
|
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<div style="display:grid;height:80%;">
|
|
|
|
<div style="margin:auto;">
|
2022-07-03 15:42:14 -05:00
|
|
|
<form class="form" action="/admin/login" method="POST">
|
2022-06-22 13:11:22 -05:00
|
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
|
2022-07-03 15:42:14 -05:00
|
|
|
<input type="password" placeholder="password" name="password">
|
2022-06-22 13:11:22 -05:00
|
|
|
<input type="submit" value="Login">
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|