fix: fix activate gestionnaire and activate administrateur

This commit is contained in:
seb-by-ouidou 2023-10-26 15:29:34 +00:00 committed by seb-by-ouidou
parent 6203b1fd05
commit a5d95b2d9d
9 changed files with 163 additions and 3 deletions

View file

@ -0,0 +1,26 @@
- content_for(:title, t('.title'))
- content_for :footer do
= render partial: "root/footer"
.fr-container.fr-my-5w
.fr-grid-row.fr-grid-row--center
.fr-col-lg-6
= form_for @gestionnaire, url: { controller: 'gestionnaires/activate', action: :create } do |f|
= f.hidden_field :reset_password_token, value: @token
%fieldset.fr-mb-0.fr-fieldset{ aria: { labelledby: 'edit-password-legend' } }
%legend.fr-fieldset__legend#edit-password-legend
%h1.fr-h2= t('.title')
.fr-fieldset__element
= render Dsfr::InputComponent.new(form: f, attribute: :email, opts: { disabled: true })
.fr-fieldset__element
= render Dsfr::InputComponent.new(form: f, attribute: :password, input_type: :password_field,
opts: { autofocus: 'true', autocomplete: 'new-password', data: { controller: 'turbo-input', turbo_input_url_value: show_password_complexity_path }})
#password_complexity
= render PasswordComplexityComponent.new
= f.submit t('.continue'), id: 'submit-password', class: "fr-btn fr-btn--lg fr-mt-2w", data: { disable_with: t('views.users.passwords.edit.submit_loading') }