about summary refs log tree commit diff stats
path: root/app/views/devise/passwords/new.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/devise/passwords/new.html.erb')
-rw-r--r--app/views/devise/passwords/new.html.erb16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/views/devise/passwords/new.html.erb b/app/views/devise/passwords/new.html.erb new file mode 100644 index 0000000..3d6d11a --- /dev/null +++ b/app/views/devise/passwords/new.html.erb
@@ -0,0 +1,16 @@
1<h2>Forgot your password?</h2>
2
3<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) 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="actions">
12 <%= f.submit "Send me reset password instructions" %>
13 </div>
14<% end %>
15
16<%= render "devise/shared/links" %>