OSDN Git Service

t#30460:add page title
[pettanr/pettanr.git] / app / views / demand_users / registrations / edit.html.erb
1 <% @page_title = t('admins.signup.title') %>
2 <h2>Edit <%= resource_name.to_s.humanize %></h2>
3
4 <%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %>
5   <%= devise_error_messages! %>
6
7   <div><%= f.label :email %><br />
8   <%= f.email_field :email %></div>
9
10   <div><%= f.label :password %> <i>(leave blank if you don't want to change it)</i><br />
11   <%= f.password_field :password %></div>
12
13   <div><%= f.label :password_confirmation %><br />
14   <%= f.password_field :password_confirmation %></div>
15
16   <div><%= f.label :current_password %> <i>(we need your current password to confirm your changes)</i><br />
17   <%= f.password_field :current_password %></div>
18
19   <div><%= f.submit "Update" %></div>
20 <% end %>
21
22 <h3>Cancel my account</h3>
23
24 <p>Unhappy? <%= link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete %>.</p>
25
26 <%= link_to "Back", :back %>