+
+ {!changedEmail ? t("Mistype your email address? Change it here:") : ""}
+
+ <>
+ {changeSignupEmailError &&
{changeSignupEmailError.message}}
+ {isChangeSignupEmailSuccess && (
+
{t("auth:change_signup_email_form.success_message")}
+ )}
+ {!changedEmail ? (
+
+
+
+
+ ) : (
+ <>>
+ )}
+ >
+
+ );
+}
diff --git a/app/web/features/auth/signup/ResendVerificationEmailForm.tsx b/app/web/features/auth/signup/ResendVerificationEmailForm.tsx
index 1f2eb7a647..69f8bd71e3 100644
--- a/app/web/features/auth/signup/ResendVerificationEmailForm.tsx
+++ b/app/web/features/auth/signup/ResendVerificationEmailForm.tsx
@@ -3,6 +3,7 @@ import { useMutation } from "@tanstack/react-query";
import Alert from "components/Alert";
import StyledLink from "components/StyledLink";
import { useAuthContext } from "features/auth/AuthProvider";
+import ChangeSignupEmail from "features/auth/signup/ChangeSignupEmail";
import { Trans, useTranslation } from "i18n";
import { AUTH, GLOBAL } from "i18n/namespaces";
import { useState } from "react";
@@ -26,9 +27,18 @@ export default function ResendVerificationEmailForm() {
<>
{mutation.error &&