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/confirmations/new.html.erb

19 lines
650 B
Text
Raw Normal View History

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