fix hidden label

This commit is contained in:
clemkeirua 2020-06-29 17:11:39 +02:00 committed by Pierre de La Morinerie (Rebase PR Action)
parent cc9341a83c
commit 101acafb65
3 changed files with 9 additions and 7 deletions

View file

@ -37,7 +37,8 @@
} }
.confirmation-resend { .confirmation-resend {
p { p,
label {
margin-bottom: $default-padding; margin-bottom: $default-padding;
} }
@ -45,6 +46,10 @@
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
label {
flex-basis: 100%;
}
input, input,
button { button {
margin-bottom: $default-spacer; margin-bottom: $default-spacer;
@ -56,9 +61,5 @@
margin-right: $default-spacer; margin-right: $default-spacer;
} }
} }
label {
display: none;
}
} }
} }

View file

@ -27,7 +27,8 @@
%p Si vous navez pas reçu notre message (avez-vous vérifié les indésirables ?), nous pouvons vous le renvoyer. %p Si vous navez pas reçu notre message (avez-vous vérifié les indésirables ?), nous pouvons vous le renvoyer.
= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { class: 'form' }) do |f| = form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { class: 'form' }) do |f|
= f.label :email, 'Email' = f.label :email, 'Votre email'
%br
= f.email_field :email, placeholder: 'Email', class: 'small', autofocus: true = f.email_field :email, placeholder: 'Email', class: 'small', autofocus: true
= f.submit 'Renvoyer un email de confirmation', class: 'button' = f.submit 'Renvoyer un email de confirmation', class: 'button'

View file

@ -22,7 +22,7 @@ feature 'wcag rules for usager', js: true do
perform_enqueued_jobs do perform_enqueued_jobs do
click_button 'Créer un compte' click_button 'Créer un compte'
expect(page).to be_accessible.skipping(:'role-img-alt', :label) expect(page).to be_accessible.skipping(:'role-img-alt')
end end
end end