diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-03-08 15:36:56 -0800 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-03-08 15:36:56 -0800 |
commit | 73a97e58f7ff9fa0be10a43ff4f135b864d8cf99 (patch) | |
tree | 83bf51c349434a7b0ba9ed19868607453a0cf0d9 | |
parent | 2ac483720027022081b77e5e1dd3c26af7a6a7d0 (diff) | |
parent | 763f8d0e4f52600bc39f501085c878e18e3325c6 (diff) |
Merge remote-tracking branch 'vjpr_github/fix-signup-chrome' into develop
-rw-r--r-- | app/views/user/_signup.rhtml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/user/_signup.rhtml b/app/views/user/_signup.rhtml index 913423ffa..89ab19b7e 100644 --- a/app/views/user/_signup.rhtml +++ b/app/views/user/_signup.rhtml @@ -16,7 +16,7 @@ <p> <label class="form_label" for="user_signup_name"> <%= _('Your name:')%></label> - <%= text_field 'user_signup', 'name', { :size => 20, :tabindex => 70 } %> + <%= text_field 'user_signup', 'name', { :size => 20, :tabindex => 70, :autocomplete => "off" } %> </p> <div class="form_item_note"> <%= raw(_('Your <strong>name will appear publicly</strong> @@ -28,12 +28,12 @@ <p> <label class="form_label" for="user_signup_password"> <%= _('Password:')%></label> - <%= password_field 'user_signup', 'password', { :size => 15, :tabindex => 80 } %> + <%= password_field 'user_signup', 'password', { :size => 15, :tabindex => 80, :autocomplete => "off" } %> </p> <p> <label class="form_label" for="user_signup_password_confirmation"> <%= _('Password: (again)')%></label> - <%= password_field 'user_signup', 'password_confirmation', { :size => 15, :tabindex => 90 } %> + <%= password_field 'user_signup', 'password_confirmation', { :size => 15, :tabindex => 90, :autocomplete => "off" } %> </p> <% if @request_from_foreign_country %> |