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

17 lines
521 B
Text

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