{% extends base_template %} {% load i18n static localcosmos_tags %} {% block content %}
{% trans 'Sign in' %}
{% if request.user.is_authenticated is True %}
{% blocktrans with user=request.user %}You are signed in as {{ user }}{% endblocktrans %}
{% else %}
{% csrf_token %} {% render_bootstrap_form form %} {% if next %} {% endif %}


{% trans 'I forgot my password.' %}

{% endif %}
{% if request.user.is_authenticated is False %} {# currently, registration should be done through an installed webapp or app #} {% endif %}
{% endblock %}