{% extends 'wafer/base_form.html' %} {% load i18n %} {% load crispy_forms_tags %} {% load wafer_crispy %} {% load wafer_sso %} {% block title %}Login - {{ WAFER_CONFERENCE_NAME }}{% endblock %} {% block content %}

{% trans 'Log in' %}

{% wafer_form_helper 'wafer.registration.forms.LoginFormHelper' as form_helper %} {% crispy form form_helper %}

{% trans 'Sign up' %}

{% url 'registration_register' as signup_url %} {% blocktrans trimmed %} Not registered? Please sign up. {% endblocktrans %} {% if WAFER_SSO %}

{% trans 'Shared/Social Log in and Sign up' %}

    {% if 'github' in WAFER_SSO %}
  • GitHub
  • {% endif %} {% if 'gitlab' in WAFER_SSO %}
  • GitLab
  • {% endif %}
{% endif %}
{% endblock %}