mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-02 05:31:01 -05:00
16 lines
536 B
Plaintext
16 lines
536 B
Plaintext
- content_for :title, ""
|
|
.form-page
|
|
.card.form-card
|
|
= form_for(resource, as: resource_name,
|
|
url: unlock_path(resource_name),
|
|
html: { method: :post,
|
|
class: 'form-horizontal',
|
|
role: 'form' }) do |f|
|
|
|
|
%h2 Resend unlock instructions
|
|
= render 'devise/shared/error_messages', resource: resource
|
|
= f.email_field :email, class: 'form-control', placeholder: 'Email'
|
|
= f.submit "Resend unlock instructions", class: 'btn btn-block my-4 btn-primary'
|
|
|
|
= render "devise/shared/links"
|