Merge "Disable form auto-complete on login form"

This commit is contained in:
Zuul 2023-04-21 18:10:36 +00:00 committed by Gerrit Code Review
commit da57fea8e2
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 %}