mastodon/app/views/auth/passwords/edit.html.haml

21 lines
1.2 KiB
Plaintext
Raw Normal View History

- content_for :page_title do
2016-11-15 23:02:57 +01:00
= t('auth.set_new_password')
= simple_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put, novalidate: false }) do |f|
= render 'shared/error_messages', object: resource
2016-10-18 16:37:15 +02:00
- if !use_seamless_external_login? || resource.encrypted_password.present?
= f.input :reset_password_token, as: :hidden
2016-10-18 16:37:15 +02:00
.fields-group
= f.input :password, wrapper: :with_label, autofocus: true, label: t('simple_form.labels.defaults.new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.new_password'), :autocomplete => 'new-password', :minlength => User.password_length.first, :maxlength => User.password_length.last }, required: true
.fields-group
= f.input :password_confirmation, wrapper: :with_label, label: t('simple_form.labels.defaults.confirm_new_password'), input_html: { 'aria-label' => t('simple_form.labels.defaults.confirm_new_password'), :autocomplete => 'new-password' }, required: true
.actions
= f.button :button, t('auth.set_new_password'), type: :submit
- else
2018-02-28 19:04:53 +01:00
%p.hint= t('users.seamless_external_login')
2016-10-03 16:38:22 +02:00
2017-05-17 15:36:56 +02:00
.form-footer= render 'auth/shared/links'