Skip to content
Snippets Groups Projects
Commit 4ce3ef41 authored by Jon Evans's avatar Jon Evans
Browse files

Disable autocomplete for admin/users form

Fixes #2796
parent 4bfb98dd
No related branches found
No related tags found
Loading
Loading
Loading
@@ -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
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment