Commit 4ce3ef41 authored by Jon Evans's avatar Jon Evans

Disable autocomplete for admin/users form

Fixes #2796
parent 4bfb98dd
......@@ -11,17 +11,17 @@
.clearfix
= f.label :name
.input
= f.text_field :name, required: true
= f.text_field :name, required: true, :autocomplete => "off"
%span.help-inline * required
.clearfix
= f.label :username
.input
= f.text_field :username, required: true
= f.text_field :username, required: true, :autocomplete => "off"
%span.help-inline * required
.clearfix
= f.label :email
.input
= f.text_field :email, required: true
= f.text_field :email, required: true, :autocomplete => "off"
%span.help-inline * required
%fieldset
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment