1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/users/passwords/new.html.erb

17 lines
488 B
Text
Raw Normal View History

2018-12-03 15:03:01 -05:00
<div class="container">
2018-12-15 00:01:04 -05:00
<h1><%= translate '.forgot_your_password' %></h1>
2018-12-03 15:03:01 -05:00
<%= simple_form_for resource, as: resource_name, url: password_path(resource_name) do |f| %>
<%= f.error_notification %>
2019-09-03 01:37:22 -04:00
<%= f.input :email,
required: true,
autofocus: true,
input_html: { autocomplete: 'email' } %>
2018-12-03 15:03:01 -05:00
2019-09-03 01:37:22 -04:00
<%= f.button :submit, translate('.send_me_reset_password_instructions') %>
2018-12-03 15:03:01 -05:00
<% end %>
<%= render 'users/shared/links' %>
</div>