OSDN Git Service

t#30460:add page title
[pettanr/pettanr.git] / app / views / admins / registrations / new.html.erb
1 <% @page_title = t('admins.signup.title') %>
2 <h2><%= t('admins.signup.title') %></h2>
3
4 <%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) 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 %><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.submit t('admins.signup.signup') %></div>
17 <% end %>
18
19 <%= render :partial => "admins/shared/links" %>