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

16 lines
633 B
Plaintext
Raw Normal View History

2020-05-10 04:45:48 -07:00
- provide(:title, generate_title('Resend confirmation instructions'))
2014-08-01 08:40:48 -07:00
.container
2020-05-06 12:56:10 -07:00
.row
.col-sm-8.offset-sm-2
.card.mt-3
.card-body
%h1 Resend confirmation instructions
= bootstrap_form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f|
2020-05-22 14:33:30 -07:00
= render 'devise/shared/error_messages', resource: resource
2014-08-01 08:40:48 -07:00
2020-05-10 04:45:48 -07:00
= f.text_field :screen_name, autofocus: true, label: 'User name'
= f.submit 'Resend confirmation instructions', class: 'btn btn-primary mb-3'
2014-08-01 08:40:48 -07:00
2020-05-10 04:45:48 -07:00
= render 'devise/shared/links'
= render 'shared/links'