Implement activate account page

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-02-17 14:30:32 +04:00
parent 47aba96b69
commit 5ab5d2cc4c
13 changed files with 278 additions and 138 deletions

View File

@@ -6,17 +6,17 @@ export const Invitation = () => {
return (
<EmailLayout subject={'Invitation to join {{.OrganizationName}} on Probo'}>
<Text style={bodyText}>
You have been invited to join organization <strong>{'{{.OrganizationName}}'}</strong> on Probo. Click the button below to accept the invitation:
You have been invited to join organization <strong>{'{{.OrganizationName}}'}</strong> on Probo. Click the button below to activate your account:
</Text>
<Section style={buttonContainer}>
<Button style={button} href={'{{.InvitationUrl}}'}>
Accept Invitation
Activate Account
</Button>
</Section>
<Text style={footerText}>
If you don't want to accept the invitation, you can ignore this email.
If you don't want to do so, you can ignore this email.
</Text>
</EmailLayout>
);