{% extends "base.html" %} {% load i18n %} {% load crispy_forms_tags %} {% block content %}

{% trans "Sign in" %}

{% if "user_pw" not in student_sign_in_view %}
{% url student_sign_in_view as student_sign_in_view %} {% blocktrans trimmed %} If you have a not been assigned a password, you should use the standard sign-in process . {% endblocktrans %}
{% else %}
{% url "relate-sign_up" as relate-sign_up %} {% blocktrans trimmed %} If you do not have an account, sign up. {% endblocktrans %} {% url "relate-reset_password" as relate-reset_password %} {% blocktrans trimmed %} If you do not remember your password, reset your password . {% endblocktrans %}
{% endif %}
{% crispy form %}
{% endblock %}