horizon/horizon/templates/auth/login.html
Diana Whitten b54f73d619 Branding: Horizon needs global footer override
Horizon footer is now configurable at a global level and can live
within a theme.

It was noted that the login page will usually want its own footer.

Change-Id: I61d7876b02cbff2d36b076c201847a39b0454136
Closes-bug: #1531335
2016-01-14 17:48:36 +00:00

15 lines
278 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "Login" %}{% endblock %}
{% block body_id %}splash{% endblock %}
{% block content %}
{% include 'auth/_login.html' %}
{% endblock %}
{% block footer %}
{% include '_login_footer.html' %}
{% endblock %}