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