demarches-normaliennes/app/views/devise/passwords/new.html.haml

20 lines
614 B
Text
Raw Normal View History

- content_for(:title, 'Mot de passe oublié')
2016-02-08 19:32:18 +01:00
- content_for :footer do
= render partial: 'root/footer'
2016-02-08 19:32:18 +01:00
.container.devise-container
.one-column-centered
= devise_error_messages!
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { class: 'form' }) do |f|
%h1= t('devise.passwords.new.forgot_your_password')
%p.notice= t('devise.passwords.new.send_me_reset_password_instructions')
= f.label :email, 'Email'
= f.email_field :email, autofocus: true
= f.submit t('devise.passwords.new.request_new_password'), class: 'button expand primary'