diff --git a/src/app/register-email-form/register-email-form.component.html b/src/app/register-email-form/register-email-form.component.html
index a38c4a81c0..740018392c 100644
--- a/src/app/register-email-form/register-email-form.component.html
+++ b/src/app/register-email-form/register-email-form.component.html
@@ -14,13 +14,16 @@
+ type="text" id="email" formControlName="email"
+ [attr.aria-label]="'register-email.aria.label'|translate"
+ aria-describedby="email-errors-required email-error-not-valid"
+ [attr.aria-invalid]="form.get('email')?.invalid"/>
-
+
{{ MESSAGE_PREFIX + '.email.error.required' | translate }}
-
+
{{ MESSAGE_PREFIX + '.email.error.not-email-form' | translate }}
0">
{{ MESSAGE_PREFIX + '.email.error.not-valid-domain' | translate: { domains: validMailDomains.join(', ') } }}
diff --git a/src/assets/i18n/en.json5 b/src/assets/i18n/en.json5
index 7c106f3c70..43b12b92d2 100644
--- a/src/assets/i18n/en.json5
+++ b/src/assets/i18n/en.json5
@@ -6741,4 +6741,6 @@
"item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as",
"browse.search-form.placeholder": "Search the repository",
+
+ "register-email.aria.label": "Enter your e-mail address",
}
diff --git a/src/assets/i18n/es.json5 b/src/assets/i18n/es.json5
index 55962d25b5..0306c5a9bb 100644
--- a/src/assets/i18n/es.json5
+++ b/src/assets/i18n/es.json5
@@ -8152,5 +8152,8 @@
//"browse.search-form.placeholder": "Search the repository",
"browse.search-form.placeholder": "Buscar en el repositorio",
+ // "register-email.aria.label": "Enter your e-mail address",
+ "register-email.aria.label": "Introduzca su dirección de correo electrónico",
+
}
diff --git a/src/assets/i18n/pt-BR.json5 b/src/assets/i18n/pt-BR.json5
index c3b26a09d2..6f4f94d464 100644
--- a/src/assets/i18n/pt-BR.json5
+++ b/src/assets/i18n/pt-BR.json5
@@ -10249,4 +10249,7 @@
//"browse.search-form.placeholder": "Search the repository",
"browse.search-form.placeholder": "Buscar no repositório",
+
+ // "register-email.aria.label": "Enter your e-mail address",
+ "register-email.aria.label": "Digite seu e-mail",
}