{% extends 'wafer/base.html' %} {% load i18n %} {% load crispy_forms_tags %} {% load wafer_crispy %} {% 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 %} Not registered? Please sign up. {% endblocktrans %} {% if WAFER_SSO %}

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

    {% if 'github' in WAFER_SSO %} {% url 'wafer.registration.views.github_login' as github_sso_url %}
  • GitHub
  • {% endif %} {% if 'debian' in WAFER_SSO %} {% url 'wafer.registration.views.debian_login' as debian_sso_url %}
  • Debian SSO
  • {% endif %}
{% endif %}
{% endblock %}