mirror of
https://github.com/moepman/bk-dss
synced 2024-11-01 00:17:06 +01:00
Markus Hauschild
933443f30e
adjust classes to look okay with bootstrap 4 replace glyphicons with inline svgs from bootstrap-icons
14 lines
425 B
HTML
14 lines
425 B
HTML
{% extends "_base.html" %}
|
|
{% from "_helpers.html" import render_button, render_field %}
|
|
{% block content %}
|
|
<div class="pb-2 mt-4 mb-3 border-bottom">
|
|
<h1>Login</h1>
|
|
</div>
|
|
<form class="form-horizontal" method="POST">
|
|
{{ form.hidden_tag() }}
|
|
{{ render_field(form.user) }}
|
|
{{ render_field(form.pswd) }}
|
|
{{ render_button(form.submit) }}
|
|
</form>
|
|
{% endblock %}
|