{% extends "base.html" %} {% load i18n %} {% block page_title %}{% trans "Log in to Storage Service" %}{% endblock page_title %} {% block content %} {% if form.errors %}

{% trans "Your username and password didn't match. Please try again." %}

{% endif %}
{% csrf_token %}
{{ form.username.label_tag }} {{ form.username }}
{{ form.password.label_tag }} {{ form.password }}
{% if oidc_enabled %} Log in with OpenID Connect {% endif %} {% endblock %}