mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
15 lines
470 B
Text
15 lines
470 B
Text
.row
|
|
.offset-sm-2.col-sm-8
|
|
%h3 Forgot Your Password
|
|
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f|
|
|
= devise_error_messages!
|
|
|
|
.form-group
|
|
= f.label :email
|
|
%br/
|
|
= f.email_field :email, autofocus: true, class: 'form-control'
|
|
|
|
.form-group
|
|
= f.submit "Send Me Reset Password Instructions", class: 'btn btn-primary'
|
|
|
|
= render "devise/shared/links"
|