2015-05-10 10:48:47 -07:00
|
|
|
- provide(:title, "Resend confirmation instructions | #{APP_CONFIG['site_name']}")
|
2014-08-01 08:40:48 -07:00
|
|
|
.container
|
|
|
|
%h1 Resend confirmation instructions
|
2014-11-02 04:47:35 -08:00
|
|
|
= bootstrap_form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f|
|
2014-08-01 08:40:48 -07:00
|
|
|
= devise_error_messages!
|
|
|
|
|
2015-01-01 08:50:25 -08:00
|
|
|
= f.text_field :screen_name, autofocus: true, label: "User name"
|
2014-08-01 08:40:48 -07:00
|
|
|
= f.submit "Resend confirmation instructions"
|
|
|
|
|
2014-11-25 04:58:20 -08:00
|
|
|
= render "devise/shared/links"
|
|
|
|
= render "shared/links"
|