Skip to content
Snippets Groups Projects
Commit d6513b51 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Merge pull request #2924 from cdawzrd/patch-2

Disable autocomplete for admin/users form
parents 06dd530e 6474797d
No related branches found
No related tags found
No related merge requests found
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.
Finish editing this message first!
Please register or to comment