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