{% extends "base.html" %} {% set active_page = "signin" %} {% from "_formhelpers.html" import render_field %} {% block content %}
{% if next is not none%} {% if auth.twitter %} {% endif %} {% if auth.facebook %} {% endif %} {% if auth.google %} {% endif %} {% else %} {% if auth.twitter %} {% endif %} {% if auth.facebook %} {% endif %} {% if auth.google %} {% endif %} {% endif %}
{{ form.hidden_tag() }}

Or sign in with your {{brand}} account

{{ render_field(form.email, placeholder="Email", class="form-control", type="email", autofocus="autofocus", required="required") }} {{ render_field(form.password, placeholder="Password", class="form-control", type="password", required="required", pattern=".{6,}", title="Must be a minimum of 6 characters") }} Forgotten password

By clicking the Sign in button you are agreeing to our terms of use.


{% endblock %}