mirror of
https://github.com/tiyn/container-critique.git
synced 2025-04-02 16:17:49 +02:00
26 lines
657 B
HTML
26 lines
657 B
HTML
{% extends "template.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
<div class="logging">
|
|
<h1>Sign In</h1>
|
|
<form action="" method="post" novalidate>
|
|
{{ form.hidden_tag() }}
|
|
<p>
|
|
{{ form.username.label }}<br>
|
|
{{ form.username(size=32) }}
|
|
</p>
|
|
<p>
|
|
{{ form.password.label }}<br>
|
|
{{ form.password(size=32) }}
|
|
</p>
|
|
<p>{{ form.submit() }}</p>
|
|
{% for mesg in get_flashed_messages() %}
|
|
<p>{{ mesg }}</p>
|
|
{% endfor %}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|