{% extends "base.html" %} {% block content %}

{{ _('Note') }} {{ _('By click the') }} {{ _('Sign in button') }} {{ _('below you are agreeing to the') }} {{ _('terms of use') }} {{ _('and') }} {{ _('data') }}.

{% if next is not none%} {% if auth.twitter %} {{ _('Sign in with Twitter') }} {% endif %} {% if auth.facebook %} {{ _('Sign in with Facebook') }} {% endif %} {% if auth.google %} {{ _('Sign in with Google') }} {% endif %} {% else %} {% if auth.twitter %} {{ _('Sign in with Twitter') }} {% endif %} {% if auth.facebook %} {{ _('Sign in with Facebook') }} {% endif %} {% if auth.google %} {{ _('Sign in with Google') }} {% endif %} {% endif %}
{% from "_formhelpers.html" import render_field %}
{{ form.hidden_tag() }} {% if auth.twitter or auth.facebook%} {{ _('Or Sign in with your PyBossa account') }} {% else %} {{ _('Sign in with your PyBossa account') }} {% endif %} {{ render_field(form.email, placeholder="") }} {{ render_field(form.password, placeholder="") }}
{{ _(' Create a new account!') }} {{ _('Forgot Password') }}
{% endblock %}