<%= f.label :full_name, t('.full_name'), :class => 'required' %> <%= f.text_field :full_name %>
<%= f.label :email, t('.email_address'), :class => 'required' %> <%= t('.the_email_address_is_used_for_notifications') %> <%= f.text_field :email %>
<%= f.label :password, t('.password'), :class => 'required' %> <%= f.password_field :password %>
<%= f.label :password_confirmation, t('.password_confirmation'), :class => 'required' %> <%= t('.please_repeat_the_password_exactly_as_above') %> <%= f.password_field :password_confirmation %>
<%= f.submit t('.create_account') %> <% unless logged_in? %> | <%= link_to t('.login_instead'), login_path %> <% end %>
<% end %>