Log in.
43%
logging in...
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
Invalid login
Enter
demo
/
demo
as login and password.
{{ form.hidden_tag() }}
{% if form.username.errors %} {{ form.username(class="form-control is-invalid") }}
{% for error in form.username.errors %}
{{ error }}
{% endfor %}
{% else %} {{ form.username(class="form-control", placeholder="Username") }} {% endif %}
{% if form.password.errors %} {{ form.password(class="form-control is-invalid") }}
{% for error in form.password.errors %}
{{ error }}
{% endfor %}
{% else %} {{ form.password(class="form-control", placeholder="Password") }} {% endif %}
{{ form.submit(class="btn btn-info btn-block btn-login", style="text-align: center") }}
Register