{% extends "registration/registration_base.html" %} {% load i18n %} {% load bootstrap4 %} {% load static %} {% block title %}{% trans "Log in" %}{% endblock %} {% block content %}
{% if user.is_authenticated %}

{% trans "Hello" %} {{ user.username|title }}

{% trans "Log out" %}
{% else %}
{% trans "Forgot your password?" %} {% trans "Sign up?" %}
{% endif %}
{% endblock %}