WIP
This commit is contained in:
parent
327f0cd5b9
commit
8285ca230c
2 changed files with 16 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# Minauth
|
||||
# Minauthator
|
||||
|
||||
## Features
|
||||
|
||||
|
|
15
src/templates/pages/authorize.html
Normal file
15
src/templates/pages/authorize.html
Normal 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 %}
|
Loading…
Reference in a new issue