Merge "template for content under the login form"

This commit is contained in:
Jenkins 2017-09-20 11:40:52 +00:00 committed by Gerrit Code Review
commit b1197a9365
3 changed files with 18 additions and 2 deletions

View File

@ -20,9 +20,14 @@
<input type="hidden" value="" name="is_modal">
{% endblock %}
{% block login_footer %}
{{ block.super }}
{% include '_login_form_footer.html' %}
{% endblock %}
{% block post_login %}
{{ block.super }}
</div>
</div>
</div>
{% endblock %}
{% endblock %}

View File

@ -13,9 +13,14 @@
{{ block.super }}
{% endblock %}
{% block login_footer %}
{{ block.super }}
{% include '_login_form_footer.html' %}
{% endblock %}
{% block post_login %}
{{ block.super }}
</div>
</div>
</div>
{% endblock %}
{% endblock %}

View File

@ -0,0 +1,6 @@
{% comment %}
A simple placeholder template for custom login form footer content.
Unlike the login footer, this template places content into the form
right below the login button. Such as a link to a password reset
form or other additional links.
{% endcomment %}