This commit is contained in:
Matthieu Bessat 2024-10-22 18:31:49 +02:00
parent 327f0cd5b9
commit 8285ca230c
2 changed files with 16 additions and 1 deletions

View file

@ -1,4 +1,4 @@
# Minauth # Minauthator
## Features ## Features

View file

@ -0,0 +1,15 @@
{% extends "layouts/base.html" %}
{% block body %}
<!-- Login form -->
{% if error %}
<div>
Error: {{ error }}
</div>
{% endif %}
<form id="authorize-form" method="post">
<input id="keep_session" type="checkbox" class="form-check-input">
<label class="form-check-label" for="keep_session">Check me out</label>
<button type="submit" class="btn btn-primary">Authorize</button>
</form>
{% endblock %}