You've already forked AstralRinth
forked from didirus/AstralRinth
* feat: clean up route structure * feat: install html-pdf-node-ts * fea * feat: use @ceereals/vue-pdf (react-pdf) * feat: remove pdf * feat: hide cc * feat: shared template * feat: payment statement document & redirect for emails * feat: layout tweaks * fix: lint issues * fix: robots.txt * feat: remove letterhead * Delete .claude/settings.local.json Signed-off-by: Calum H. <contact@cal.engineer> --------- Signed-off-by: Calum H. <contact@cal.engineer>
33 lines
1015 B
Vue
33 lines
1015 B
Vue
<script setup lang="ts">
|
|
import { Button, Heading, Link as VLink, Text } from '@vue-email/components'
|
|
|
|
import StyledEmail from '../shared/StyledEmail.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<StyledEmail
|
|
title="Reset your password"
|
|
:manual-links="[{ link: '{resetpassword.url}', label: 'Password reset link' }]"
|
|
>
|
|
<Heading as="h1" class="mb-2 text-2xl font-bold"> Reset your password </Heading>
|
|
|
|
<Text class="text-muted text-base">Hi {user.name},</Text>
|
|
<Text class="text-muted text-base">
|
|
Please visit the link below to reset your password. If you did not request for your password
|
|
to be reset, you can safely ignore this email.
|
|
</Text>
|
|
|
|
<Button
|
|
href="{resetpassword.url}"
|
|
target="_blank"
|
|
class="text-accentContrast inline-block rounded-[12px] bg-brand pb-3 pl-4 pr-4 pt-3 text-[14px] font-bold"
|
|
>
|
|
Reset password
|
|
</Button>
|
|
|
|
<VLink href="{resetpassword.url}">
|
|
<Text class="text-muted mt-2 break-words text-xs font-bold">{resetpassword.url}</Text>
|
|
</VLink>
|
|
</StyledEmail>
|
|
</template>
|