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

12 lines
398 B
Plaintext
Raw Normal View History

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