{% 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 log in as a different user, you'll need to log out first." %}

{% else %} {{ block.super }} {% url "signup" as signup_url %}

{% blocktrans with request.GET.next as next %}If you don't have an account you can sign up for one now.{% endblocktrans %}

{% url "mezzanine_password_reset" as password_reset_url %} {% url "profile_update" as profile_update_url %} {% blocktrans %}

You can also reset your password if you've forgotten it.

{% endblocktrans %}

{% endif %} {% endblock %}