diff options
author | Jon Evans <jon@craftyjon.com> | 2013-02-06 08:50:35 -0500 |
---|---|---|
committer | Jon Evans <jon@craftyjon.com> | 2013-02-06 08:50:35 -0500 |
commit | 4ce3ef41deb59e5ff9da6f879c27d65677997477 (patch) | |
tree | 9285ee75058130f4427ce2a032bedf92f4e3cbe1 /app | |
parent | 4bfb98ddc90bcc6076e2819619fec7607e74358b (diff) | |
download | gitlab-ce-4ce3ef41deb59e5ff9da6f879c27d65677997477.tar.gz |
Disable autocomplete for admin/users form
Fixes #2796
Diffstat (limited to 'app')
-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..f833c295936 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 |