diff options
Diffstat (limited to 'app/views/devise/registrations')
-rw-r--r-- | app/views/devise/registrations/edit.html.erb | 43 | ||||
-rw-r--r-- | app/views/devise/registrations/new.html.erb | 29 |
2 files changed, 72 insertions, 0 deletions
diff --git a/app/views/devise/registrations/edit.html.erb b/app/views/devise/registrations/edit.html.erb new file mode 100644 index 0000000..1e66f3d --- /dev/null +++ b/app/views/devise/registrations/edit.html.erb | |||
@@ -0,0 +1,43 @@ | |||
1 | <h2>Edit <%= resource_name.to_s.humanize %></h2> | ||
2 | |||
3 | <%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %> | ||
4 | <%= devise_error_messages! %> | ||
5 | |||
6 | <div class="field"> | ||
7 | <%= f.label :email %><br /> | ||
8 | <%= f.email_field :email, autofocus: true %> | ||
9 | </div> | ||
10 | |||
11 | <% if devise_mapping.confirmable? && resource.pending_reconfirmation? %> | ||
12 | <div>Currently waiting confirmation for: <%= resource.unconfirmed_email %></div> | ||
13 | <% end %> | ||
14 | |||
15 | <div class="field"> | ||
16 | <%= f.label :password %> <i>(leave blank if you don't want to change it)</i><br /> | ||
17 | <%= f.password_field :password, autocomplete: "off" %> | ||
18 | <% if @minimum_password_length %> | ||
19 | <br /> | ||
20 | <em><%= @minimum_password_length %> characters minimum</em> | ||
21 | <% end %> | ||
22 | </div> | ||
23 | |||
24 | <div class="field"> | ||
25 | <%= f.label :password_confirmation %><br /> | ||
26 | <%= f.password_field :password_confirmation, autocomplete: "off" %> | ||
27 | </div> | ||
28 | |||
29 | <div class="field"> | ||
30 | <%= f.label :current_password %> <i>(we need your current password to confirm your changes)</i><br /> | ||
31 | <%= f.password_field :current_password, autocomplete: "off" %> | ||
32 | </div> | ||
33 | |||
34 | <div class="actions"> | ||
35 | <%= f.submit "Update" %> | ||
36 | </div> | ||
37 | <% end %> | ||
38 | |||
39 | <h3>Cancel my account</h3> | ||
40 | |||
41 | <p>Unhappy? <%= button_to "Cancel my account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete %></p> | ||
42 | |||
43 | <%= link_to "Back", :back %> | ||
diff --git a/app/views/devise/registrations/new.html.erb b/app/views/devise/registrations/new.html.erb new file mode 100644 index 0000000..5a238ce --- /dev/null +++ b/app/views/devise/registrations/new.html.erb | |||
@@ -0,0 +1,29 @@ | |||
1 | <h2>Sign up</h2> | ||
2 | |||
3 | <%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %> | ||
4 | <%= devise_error_messages! %> | ||
5 | |||
6 | <div class="field"> | ||
7 | <%= f.label :email %><br /> | ||
8 | <%= f.email_field :email, autofocus: true %> | ||
9 | </div> | ||
10 | |||
11 | <div class="field"> | ||
12 | <%= f.label :password %> | ||
13 | <% if @minimum_password_length %> | ||
14 | <em>(<%= @minimum_password_length %> characters minimum)</em> | ||
15 | <% end %><br /> | ||
16 | <%= f.password_field :password, autocomplete: "off" %> | ||
17 | </div> | ||
18 | |||
19 | <div class="field"> | ||
20 | <%= f.label :password_confirmation %><br /> | ||
21 | <%= f.password_field :password_confirmation, autocomplete: "off" %> | ||
22 | </div> | ||
23 | |||
24 | <div class="actions"> | ||
25 | <%= f.submit "Sign up" %> | ||
26 | </div> | ||
27 | <% end %> | ||
28 | |||
29 | <%= render "devise/shared/links" %> | ||