Skip to content

Commit 251bfef

Browse files
committed
Revise copy on forgot/reset password email
1 parent 18965a4 commit 251bfef

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/core/email/templates/forgot-password.template.tsx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,12 @@ export interface ForgotPasswordProps {
1616
export function ForgotPassword({ token }: ForgotPasswordProps) {
1717
const url = useFrontendUrl(`/reset-password/${token}`);
1818
return (
19-
<EmailTemplate title="Forgot Password">
20-
<Heading>You have submitted a password change request!</Heading>
19+
<EmailTemplate title="Reset Password" preview={null}>
20+
<Heading>We received your password reset request</Heading>
2121

2222
<Section>
2323
<Column>
24-
<Text>
25-
If it was you, confirm the password change{' '}
26-
<InText>by clicking this link</InText>
27-
</Text>
24+
<Text align="center">If it was you, create a new password here</Text>
2825
<HideInText>
2926
<Button href={url}>CONFIRM</Button>
3027
</HideInText>

0 commit comments

Comments
 (0)