diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-02-12 08:45:07 -0800 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-02-12 08:45:07 -0800 |
commit | d6513b5153ae2d8bdfc3017f0cbbe909678dd37c (patch) | |
tree | 17e5cffebbd1574beb787e8bef8ce0ecde88a61d | |
parent | 06dd530edecf90711c5bf7fe6918729a0096a572 (diff) | |
parent | 6474797d1cc48d1a9fb0659b1b28cc27580558a1 (diff) | |
download | gitlab-ce-d6513b5153ae2d8bdfc3017f0cbbe909678dd37c.tar.gz |
Merge pull request #2924 from cdawzrd/patch-2
Disable autocomplete for admin/users form
-rw-r--r-- | app/views/admin/users/_form.html.haml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/admin/users/_form.html.haml b/app/views/admin/users/_form.html.haml index 51b05c05993..48876338a23 100644 --- a/app/views/admin/users/_form.html.haml +++ b/app/views/admin/users/_form.html.haml @@ -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 |