13 lines
364 B
HTML
13 lines
364 B
HTML
{% extends request.content_only|yesno:"empty.html,base.html" %}
|
|
{% comment %}
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
{% endcomment %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Log in" %}{% endblock %}
|
|
{% block content-title %}<h1>{% trans "Log in" %}</h1>{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include "registration/includes/login.html" %}
|
|
{% endblock %}
|