{% extends "base.html" %} {% load i18n %} {% block title %}{% trans 'Log In' %} | {{ block.super }}{% endblock %} {% block section_title %} {% trans "Glad to have you back" %} {% endblock %} {% block content %}
{% if user.is_authenticated %}

{% trans "Hey! You're already logged in!" %}

{% else %}

{% trans "Please log in to access your dashboard:" %}

{% include "form_snippet.html" %} {% url auth_password_reset as reset_pass %} {% if reset_pass %} {% trans "Forgot your password?" %} {% endif %} {% endif %}
{% endblock content %}