HTML error page

This commit is contained in:
Thomas Sileo
2022-08-28 17:36:58 +02:00
parent 651682829a
commit 87f035d298
3 changed files with 46 additions and 3 deletions

View File

@@ -1,8 +1,7 @@
{%- import "utils.html" as utils with context -%}
{% extends "layout.html" %}
{% block content %}
<div style="display:grid;height:80%;">
<div style="margin:auto;">
<div class="centered">
{% if error %}
<p class="primary-color">Invalid password.</p>
{% endif %}
@@ -13,5 +12,4 @@
<input type="submit" value="login">
</form>
</div>
</div>
{% endblock %}