{% extends "layouts/auth-default.html" %} {% block title %} Login {% endblock title %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
{% if msg %}

{{ msg | safe }}

{% else %}

Login

{% endif %}
{{ form.hidden_tag() }}
{{ form.username(placeholder="Username", class="form-control") }}
{{ form.password(placeholder="Password", class="form-control", type="password") }}
    Not a member? Register
{% endblock content %}