{% extends "layouts/base-fullscreen.html" %} {% block title %} Sign IN {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block page_header %}{% endblock page_header %} {% block page_body %}
{% with config=config %} {% include 'logo.html' %} {% endwith %}

Login to {{ config.APP_NAME }}

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %} {% endfor %}
{% endif %} {% endwith %}
{{ form.hidden_tag() }}
{{ form.email(placeholder="Email", class="form-control") }}
{{ form.password(placeholder="Password", class="form-control", type="password") }}
{% if oauths_info %}
or
{% for oauth_name, provider in oauths_info.items() %} {% endfor %}
{% endif %}
Don't have account yet? Sign up
{% endblock page_body %}