{% extends "djust_auth/layouts/auth.html" %}{% load djust_auth %} {% block title %}Check your email{% endblock %} {% block card %}{% auth_context as auth %}

Check your email

{% if email %}We sent a code to {{ email }}.{% else %}Enter the code we emailed you.{% endif %}

{% auth_errors form %}
{% csrf_token %} {% for field in form.visible_fields %}{% if field.name == "code" %}{% auth_code_input field %}{% else %}{% auth_field field %}{% endif %}{% endfor %}{% for h in form.hidden_fields %}{{ h }}{% endfor %} {% if auth.next %}{% endif %}
{% auth_links auth %} {% endblock %}