{% extends "accounts/account_form.html" %} {% load i18n %} {% block main %} {% if request.user.is_authenticated %}

{% trans "You're already logged in. If you'd like to create a new account, you'll need to log out first." %}

{% else %} {{ block.super }} {% if settings.ACCOUNTS_APPROVAL_REQUIRED %}

{% trans "After signing up, your account will be reviewed for approval. You'll receive an email when your account is activated." %}

{% elif settings.ACCOUNTS_VERIFICATION_REQUIRED %}

{% trans "After signing up, you'll receive an email with a link you need to click, in order to activate your account." %}

{% endif %} {% endif %} {% endblock %}