mirror of
https://github.com/wagtail/wagtail.git
synced 2024-12-01 11:41:20 +01:00
Avoid using aria-label with different content from visible text for "Forgotten password" link
This commit is contained in:
parent
aa47776b8a
commit
e2e0130662
@ -62,6 +62,7 @@ Changelog
|
||||
* Fix: Populate the correct return value when creating a new snippet within the snippet chooser (claudobahn)
|
||||
* Fix: Reinstate missing filter by page type on page search (Matt Westcott)
|
||||
* Fix: Ensure very long words can wrap when viewing saved comments (Chiemezuo Akujobi)
|
||||
* Fix: Avoid forgotten password link text conflicting with the supplied aria-label (Thibaud Colas)
|
||||
* Docs: Document `WAGTAILADMIN_BASE_URL` on "Integrating Wagtail into a Django project" page (Shreshth Srivastava)
|
||||
* Docs: Replace incorrect screenshot for authors listing on tutorial (Shreshth Srivastava)
|
||||
* Docs: Add documentation for building non-model-based choosers using the _queryish_ library (Matt Westcott)
|
||||
|
@ -77,6 +77,7 @@ depth: 1
|
||||
* Populate the correct return value when creating a new snippet within the snippet chooser (claudobahn)
|
||||
* Reinstate missing filter by page type on page search (Matt Westcott)
|
||||
* Ensure very long words can wrap when viewing saved comments (Chiemezuo Akujobi)
|
||||
* Avoid forgotten password link text conflicting with the supplied aria-label (Thibaud Colas)
|
||||
|
||||
### Documentation
|
||||
|
||||
|
@ -37,7 +37,7 @@
|
||||
{% field field=form.password %}{% endfield %}
|
||||
|
||||
{% if show_password_reset %}
|
||||
<a class="reset-password" href="{% url 'wagtailadmin_password_reset' %}" aria-label="{% trans 'Reset your password' %}">{% trans "Forgotten password?" %}</a>
|
||||
<a class="reset-password" href="{% url 'wagtailadmin_password_reset' %}">{% trans "Forgotten password?" %}</a>
|
||||
{% endif %}
|
||||
|
||||
{% block extra_fields %}
|
||||
|
Loading…
Reference in New Issue
Block a user