retrospring/app/views/devise/unlocks/new.html.haml
2022-10-25 20:10:31 +02:00

14 lines
496 B
Text

- provide(:title, generate_title('Unlock'))
.container
%h1 Resend unlock instructions
= render 'layouts/messages'
= bootstrap_form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }, data: { turbo: false }) do |f|
= render 'devise/shared/error_messages', resource: resource
= f.email_field :email, autofocus: true, label: 'Email address'
= f.submit 'Resend unlock instructions'
= render 'devise/shared/links'
= render 'shared/links'