mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 04:04:03 +00:00
14 lines
606 B
Text
14 lines
606 B
Text
.container
|
|
.row
|
|
.col-md-6.col-md-offset-3
|
|
.panel.panel-default
|
|
.panel-heading
|
|
%h3.panel-title
|
|
Forgot your password?
|
|
.panel-body
|
|
= semantic_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f|
|
|
= f.input :email, input_html: { autofocus: true, required: true}
|
|
%p.text-right
|
|
= f.action :submit, as: :button, label: 'Send me reset password instructions', button_html: { class: 'btn btn-success' }
|
|
|
|
= render partial: 'devise/shared/help'
|