demarches-normaliennes/app/views/france_connect/particulier/merge.html.haml

47 lines
2.2 KiB
Text
Raw Normal View History

= content_for :title, "Fusion des comptes FC et #{APPLICATION_NAME}"
.container
%h1.page-title= t('.title', application_name: APPLICATION_NAME)
%p= t('.subtitle', email: sanitize(@fci.email_france_connect), application_name: APPLICATION_NAME).html_safe
.form.mt-2
%label= t('.label_select_merge_flow', email: @fci.email_france_connect)
%fieldset.radios
%label{ onclick: "DS.showFusion(event);" }
2021-10-13 16:51:00 +02:00
= radio_button_tag :value, true, false, autocomplete: "off", id: 'it-is-mine'
= t('utils.yes')
2021-10-13 09:26:54 +02:00
%label{ onclick: "DS.showNewAccount(event);" }
2021-10-13 16:51:00 +02:00
= radio_button_tag :value, false, false, autocomplete: "off", id: 'it-is-not-mine'
= t('utils.no')
.fusion.hidden
%p= t('.title_fill_in_password')
= form_tag france_connect_particulier_merge_with_existing_account_path, data: { turbo: true }, class: 'mt-2 form fconnect-form' do
= hidden_field_tag :merge_token, @fci.merge_token, id: dom_id(@fci, :fusion_merge_token)
= hidden_field_tag :email, @fci.email_france_connect, id: dom_id(@fci, :fusion_email)
.fr-input-group
= label_tag :password, t('views.registrations.new.password_label', min_length: 8), class: 'fr-label'
= password_field_tag :password, nil, autocomplete: 'current-password', class: 'mb-1 fr-input'
.mb-2
= t('views.users.sessions.new.reset_password')
= link_to france_connect_particulier_resend_and_renew_merge_confirmation_path(merge_token: @fci.merge_token), method: :post do
= t('.link_confirm_by_email')
= submit_tag t('.button_merge'), class: 'fr-btn'
2021-10-13 09:26:54 +02:00
2021-10-13 09:26:54 +02:00
.new-account.hidden
%p= t('.title_fill_in_email', application_name: APPLICATION_NAME)
2021-10-13 09:26:54 +02:00
= form_tag france_connect_particulier_merge_with_new_account_path, data: { turbo: true }, class: 'mt-2 form' do
= hidden_field_tag :merge_token, @fci.merge_token, id: dom_id(@fci, :new_account_merge_token)
= label_tag :email, t('views.registrations.new.email_label'), for: dom_id(@fci, :new_account_email)
= email_field_tag :email, "", required: true, id: dom_id(@fci, :new_account_email)
= submit_tag t('.button_use_this_email'), class: 'button primary'
2021-10-13 09:26:54 +02:00
#new-account-password-confirmation.hidden