{% extends "secureauth/auth_base.html" %} {% load i18n %} {% block title %}{% if not request.user.is_authenticated %} {% trans 'Please sign in' %}{% else %}{% trans 'Log out' %} {% endif %}{% endblock %} {% block content %} {% if request.user.is_authenticated and request.user.is_active %}
{% trans 'You are logged in as' %} {% firstof user.get_full_name user %}. {% trans 'Click here to log out' %} .
{% else %}{% trans "Forgot password" %}? {% trans "Reset it" %}
{% trans "Not member" %}? {% trans "Register" %}
{% endif %} {% endblock content %}