diff --git a/app/views/account/_signup_form.rhtml b/app/views/account/_signup_form.rhtml
index 4730bfb..7516353 100644
--- a/app/views/account/_signup_form.rhtml
+++ b/app/views/account/_signup_form.rhtml
@@ -21,29 +21,23 @@
<%= required_fields_message %>
-<%= required f.text_field(:email,
- :help => help=_('This e-mail address will be used to contact you.')) %>
-
<%= help %>
+ <%= required f.text_field(:email) %>
+ <%= content_tag(:small,_('This e-mail address will be used to contact you.')) %>
-<%= required f.text_field(:login,
- :help => help=_('Insert your login'),
- :onchange => 'this.value = convToValidLogin( this.value )') %>
-
+<%= required f.text_field(:login, :onchange => 'this.value = convToValidLogin( this.value )') %>
+<%= content_tag(:small,_('Insert your login')) %>
+
<%= observe_field 'user_login', :url => {:action => 'check_url'}, :with => 'identifier', :update => 'url-check' %>
-<%= required f.password_field(:password,
- :help => help=_('Choose a password that you can remember easily. It must have at least 4 characters.')) %>
-
<%= help %>
+ <%= required f.password_field(:password) %>
+ <%= content_tag(:small,_('Choose a password that you can remember easily. It must have at least 4 characters.')) %>
-<%= required f.password_field(:password_confirmation,
- :help => help=_('To confirm, repeat your password.')) %>
-<%= help %>
+<%= required f.password_field(:password_confirmation) %>
+<%= content_tag(:small,_('To confirm, repeat your password.')) %>
<% labelled_fields_for :profile_data, @person do |f| %>
<%= render :partial => 'profile_editor/person_form', :locals => {:f => f} %>
--
libgit2 0.21.2