Model: Qwen 3.6 35B A3

Prompt: use 'https://app.clockify.me/signup' design to make login and register buttons link to acutal login and register pages on the project. We don't need "Continue with X" social buttons, only method of authentiction for now will be email/password

Stats:
Context: 88,970 tokens
Time: 37m 48s
This commit is contained in:
Darius Rapalis
2026-04-28 20:41:14 +03:00
parent fdfe3cd7c7
commit 646164c85d
7 changed files with 142 additions and 112 deletions

View File

@@ -8,9 +8,8 @@ import { send } from '@/routes/verification';
defineOptions({
layout: {
title: 'Verify email',
description:
'Please verify your email address by clicking on the link we just emailed to you.',
title: 'Verify your email address',
description: "We've sent a verification link to your email address. Check your inbox and click the link to get started.",
},
});
@@ -24,24 +23,30 @@ defineProps<{
<div
v-if="status === 'verification-link-sent'"
class="mb-4 text-center text-sm font-medium text-green-600"
class="mb-2 text-center text-sm font-medium text-green-600"
>
A new verification link has been sent to the email address you provided
during registration.
A new verification link has been sent to the email address you provided during registration.
</div>
<Form
v-bind="send.form()"
class="space-y-6 text-center"
v-slot="{ processing }"
>
<Button :disabled="processing" variant="secondary">
<Spinner v-if="processing" />
Resend verification email
</Button>
<div class="space-y-5">
<Form
v-bind="send.form()"
class="text-center"
v-slot="{ processing }"
>
<Button
class="w-full h-11 bg-[#03a9f4] hover:bg-[#0298dd] text-base font-medium"
:disabled="processing"
>
<Spinner v-if="processing" />
<span v-else>Resend verification email</span>
</Button>
</Form>
<TextLink :href="logout()" as="button" class="mx-auto block text-sm">
Log out
</TextLink>
</Form>
<div class="text-center text-sm text-[#607d8b]">
<TextLink :href="logout()" as="button" class="text-[#03a9f4] hover:text-[#0288d1] decoration-transparent hover:decoration-current underline-offset-4">
Log out
</TextLink>
</div>
</div>
</template>