three60/src/routes/verify/[verificationCode]/+page.svelte
2024-12-24 09:28:20 +01:00

9 lines
226 B
Svelte

<script lang="ts">
const { data } = $props();
</script>
<h1 class="text-3xl">Verification successful</h1>
<div>
Congratulations! You've successfully verified your account. <a href="/login">Click here</a> to log
in.
</div>