Skip to content
Snippets Groups Projects
Commit 2b2b03a7 authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Fix duplicate HTML ids in /about (#11803)

Fixes #11329
parent 031ca250
No related branches found
No related tags found
No related merge requests found
= simple_form_for(new_user, url: user_session_path) do |f|
= simple_form_for(new_user, url: user_session_path, namespace: 'login') do |f|
.fields-group
- if use_seamless_external_login?
= f.input :email, placeholder: t('simple_form.labels.defaults.username_or_email'), input_html: { 'aria-label' => t('simple_form.labels.defaults.username_or_email') }, hint: false
......
= simple_form_for(new_user, url: user_registration_path) do |f|
= simple_form_for(new_user, url: user_registration_path, namespace: 'registration') do |f|
.simple_form__overlay-area
%p.lead= t('about.federation_hint_html', instance: content_tag(:strong, site_hostname))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment