tap/app/views/devise/registrations/new.html.erb

17 lines
363 B
Plaintext
Raw Normal View History

2014-12-09 16:17:11 +00:00
<h2>Sign up</h2>
2015-02-09 10:58:43 +00:00
<%= f_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %>
<%= f.error_messages %>
2014-12-09 16:17:11 +00:00
2015-02-09 10:58:43 +00:00
<%= f.text_field :nickname %>
2014-12-09 16:17:11 +00:00
2015-02-09 10:58:43 +00:00
<%= f.password_field :password %>
<%= f.password_field :password_confirmation %>
2014-12-09 16:17:11 +00:00
2014-12-09 21:32:54 +00:00
<%= f.file_field :avatar %>
2015-02-09 10:58:43 +00:00
<%= f.submit "Sign up" %>
2014-12-09 16:17:11 +00:00
<% end %>
<%= render "devise/shared/links" %>