about summary refs log tree commit diff
path: root/app/views/auth/confirmations/new.html.haml
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2023-01-24 20:18:25 +0100
committerGitHub <noreply@github.com>2023-01-24 20:18:25 +0100
commitdd58db64d87896698a840b6cffe06a0e816674ef (patch)
treebb6c090b764836cc13d14d3ecb686460564a51ec /app/views/auth/confirmations/new.html.haml
parent6883fddb19b1319a378aa5dc2034670c3b27ce39 (diff)
Change email address input to be disabled for logged-in users when requesting a new confirmation e-mail (#23247)
Fixes #23093
Diffstat (limited to 'app/views/auth/confirmations/new.html.haml')
-rw-r--r--app/views/auth/confirmations/new.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/auth/confirmations/new.html.haml b/app/views/auth/confirmations/new.html.haml
index a294d3cb5..a98257873 100644
--- a/app/views/auth/confirmations/new.html.haml
+++ b/app/views/auth/confirmations/new.html.haml
@@ -5,7 +5,7 @@
   = render 'shared/error_messages', object: resource
 
   .fields-group
-    = f.input :email, autofocus: true, wrapper: :with_label, label: t('simple_form.labels.defaults.email'), input_html: { 'aria-label': t('simple_form.labels.defaults.email') }, hint: false
+    = f.input :email, autofocus: true, wrapper: :with_label, label: t('simple_form.labels.defaults.email'), input_html: { 'aria-label': t('simple_form.labels.defaults.email') }, readonly: current_user.present?, hint: current_user.present? && t('auth.confirmations.wrong_email_hint')
 
   .actions
     = f.button :button, t('auth.resend_confirmation'), type: :submit