microblog.pub/app/templates/login.html

18 lines
566 B
HTML
Raw Normal View History

2022-06-22 20:11:22 +02:00
{%- import "utils.html" as utils with context -%}
{% extends "layout.html" %}
{% block content %}
<div style="display:grid;height:80%;">
<div style="margin:auto;">
2022-08-22 18:50:20 +02:00
{% if error %}
<p class="primary-color">Invalid password.</p>
{% endif %}
2022-07-03 22:42:14 +02:00
<form class="form" action="/admin/login" method="POST">
2022-06-22 20:11:22 +02:00
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
2022-07-10 11:04:28 +02:00
<input type="hidden" name="redirect" value="{{ redirect }}">
2022-07-04 19:02:30 +02:00
<input type="password" placeholder="password" name="password" autofocus>
<input type="submit" value="login">
2022-06-22 20:11:22 +02:00
</form>
</div>
</div>
{% endblock %}