diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/pad_change.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/pad_change.html b/templates/pad_change.html index afa0633..5e46d70 100644 --- a/templates/pad_change.html +++ b/templates/pad_change.html @@ -19,6 +19,12 @@ <div class="panel-body"> <form class="form-horizontal" role="form" method="POST"> + <!-- + this will prevent chrome from filling the saved login password + into this form (chrome ignores autocomplete=off) + --> + <input type="text" class="hidden" /><input type="password" class="hidden" /> + {% for field in change_form %} {{ render_field(field) }} {% endfor %} |