21 lines
614 B
Text
21 lines
614 B
Text
<div class="container">
|
|
<h2><%= translate '.resend_unlock_instructions' %></h2>
|
|
|
|
<%= simple_form_for resource, as: resource_name, url: unlock_path(resource_name) do |f| %>
|
|
<%= f.error_notification %>
|
|
<%= f.full_error :unlock_token %>
|
|
|
|
<div class="form-inputs">
|
|
<%= f.input :email,
|
|
required: true,
|
|
autofocus: true,
|
|
input_html: { autocomplete: 'email' } %>
|
|
</div>
|
|
|
|
<div class="form-actions">
|
|
<%= f.button :submit, translate('.resend_unlock_instructions') %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%= render 'users/shared/links' %>
|
|
</div>
|