Skip to content
Snippets Groups Projects
Commit f9e08ed8 authored by David Hill's avatar David Hill Committed by David Hill
Browse files

Disable form auto-complete on login form

Disable form auto-complete on login form with autocomplete="off" for
the email/password field.

Change-Id: Ie550eae36ece160d19186a404c0e688f2f6e785b
(cherry picked from commit e4a13dbc)
parent ff702370
No related branches found
No related merge requests found
......@@ -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 %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment