<%= t('sign_up').capitalize %>

<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %> <%= devise_error_messages! %>
<%= f.label :name %>
<%= f.text_field :name, :class =>"field_x" %>
<%= f.label :email %>
<%= f.text_field :email, :class =>"field_x" %>
<%= f.label :password %>
<%= f.password_field :password, :class =>"field_x", :id => "password" %>
<%= f.label :password_confirmation %>
<%= f.password_field :password_confirmation, :class =>"field_x" %>
<%= f.submit t('action.accept').capitalize,:class=>"myButton" %>
<% end %>
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> <%= link_to t('confirmation.not_received.long'), new_confirmation_path(resource_name) %>
<% end -%>
<%= render :partial => "devise/shared/links" %>