summaryrefslogtreecommitdiff
path: root/app/views/admin/users/_form.html.haml
diff options
context:
space:
mode:
authorJon Evans <jon@craftyjon.com>2013-02-06 08:50:35 -0500
committerJon Evans <jon@craftyjon.com>2013-02-06 08:50:35 -0500
commit4ce3ef41deb59e5ff9da6f879c27d65677997477 (patch)
tree9285ee75058130f4427ce2a032bedf92f4e3cbe1 /app/views/admin/users/_form.html.haml
parent4bfb98ddc90bcc6076e2819619fec7607e74358b (diff)
downloadgitlab-ce-4ce3ef41deb59e5ff9da6f879c27d65677997477.tar.gz
Disable autocomplete for admin/users form
Fixes #2796
Diffstat (limited to 'app/views/admin/users/_form.html.haml')
-rw-r--r--app/views/admin/users/_form.html.haml6
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