{% extends "base-site.html" %} {% block title %} Login {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
{% if msg %} {{ msg | safe }} {% else %} Use default credentials: test / pass {% endif %}
  • {{ form.hidden_tag() }}
    {{ form.username(placeholder="Username", class="form-control form-control-lg") }}
    {{ form.password(placeholder="Password", class="form-control form-control-lg", type="password") }}
        Don't have an account? Register
{% endblock content %} {% block javascripts %}{% endblock javascripts %}