Merge "Disable form auto-complete on login form" into stable/xena

This commit is contained in:
Zuul 2023-05-12 09:03:47 +00:00 committed by Gerrit Code Review
commit 5156121ce1
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@
{% endcomment %}
{% if HORIZON_CONFIG.password_autocomplete != "on" %}
<div class="fake_credentials" style="display: none">
<input type="text" name="fake_email" value="" />
<input type="password" name="fake_password" value="" />
<input type="text" name="fake_email" value="" autocomplete="new-password"/>
<input type="password" name="fake_password" value="" autocomplete="new-password"/>
</div>
{%endif%}
{% if show_sso_opts %}