retrospring/app/views/devise/unlocks/new.html.haml

15 lines
472 B
Text
Raw Normal View History

2020-05-10 13:45:48 +02:00
- provide(:title, generate_title('Unlock'))
2014-08-01 17:40:48 +02:00
.container
%h1 Resend unlock instructions
2014-11-25 13:58:20 +01:00
= render 'layouts/messages'
2014-08-01 17:40:48 +02:00
= bootstrap_form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f|
2020-05-22 23:33:30 +02:00
= render 'devise/shared/error_messages', resource: resource
2015-05-10 19:48:47 +02:00
2020-05-10 13:45:48 +02:00
= f.email_field :email, autofocus: true, label: 'Email address'
2015-05-10 19:48:47 +02:00
2020-05-10 13:45:48 +02:00
= f.submit 'Resend unlock instructions'
2015-05-10 19:48:47 +02:00
2020-05-10 13:45:48 +02:00
= render 'devise/shared/links'
= render 'shared/links'