16 lines
415 B
HTML
16 lines
415 B
HTML
|
|
{% 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 %}
|