126 lines
5.8 KiB
Vue
126 lines
5.8 KiB
Vue
<template>
|
|
<div
|
|
class="relative grid min-h-screen place-items-center overflow-hidden bg-[#f5f5f5] px-4 py-12 font-sans text-[#0c0a09] md:py-24">
|
|
<div
|
|
class="pointer-events-none absolute left-1/2 top-10 h-[420px] w-[min(92vw,760px)] -translate-x-1/2 rounded-[48px] bg-[radial-gradient(circle_at_20%_30%,rgba(167,229,211,0.62),transparent_28%),radial-gradient(circle_at_72%_24%,rgba(244,197,168,0.56),transparent_30%),radial-gradient(circle_at_52%_78%,rgba(200,184,224,0.5),transparent_34%)] blur-2xl"
|
|
aria-hidden="true"></div>
|
|
<NuxtLink to="/"
|
|
class="absolute left-4 top-4 z-10 inline-flex h-10 items-center justify-center gap-2 rounded-full border border-[#d6d3d1] bg-white/80 px-4 text-[14px] font-medium leading-none text-[#0c0a09] shadow-[0_4px_16px_rgba(0,0,0,0.04)] backdrop-blur transition hover:border-[#0c0a09] md:left-8 md:top-8">
|
|
<Icon name="mdi:arrow-left" class="text-base" />
|
|
Início
|
|
</NuxtLink>
|
|
|
|
<main
|
|
class="relative grid w-full max-w-[1120px] grid-cols-1 items-center gap-8 md:grid-cols-[minmax(0,1fr)_minmax(340px,420px)] md:gap-16"
|
|
aria-labelledby="create-account-title">
|
|
<section class="relative pt-2 md:py-8">
|
|
<p
|
|
class="m-0 inline-flex rounded-full bg-[rgba(244,197,168,0.56)] px-3 py-1 text-xs font-semibold uppercase leading-[1.4] tracking-[0.96px] text-[#0c0a09]">
|
|
Nova conta
|
|
</p>
|
|
<h1 id="create-account-title"
|
|
class="my-5 max-w-[640px] font-serif text-[40px] font-light leading-[1.05] tracking-[-1.2px] text-[#0c0a09] md:text-[64px] md:tracking-[-1.92px]">
|
|
Crie sua conta
|
|
</h1>
|
|
<p class="m-0 max-w-[520px] text-base font-normal leading-6 tracking-[0.16px] text-[#4e4e4e]">
|
|
Crie sua conta de forma simples e rápida com email e senha.
|
|
</p>
|
|
</section>
|
|
|
|
<section
|
|
class="grid gap-5 rounded-2xl border border-[#e7e5e4] bg-white p-6 shadow-[0_4px_16px_rgba(0,0,0,0.04)] md:p-8"
|
|
aria-label="Formulario de criacao de conta">
|
|
<div class="mb-1">
|
|
<span
|
|
class="inline-flex min-h-6 items-center rounded-full bg-[rgba(244,197,168,0.56)] px-2.5 py-1 text-xs font-semibold uppercase leading-none tracking-[0.96px] text-[#0c0a09]">
|
|
Cadastro
|
|
</span>
|
|
<h2 class="mt-4 font-serif text-3xl font-light leading-[1.13] tracking-[-0.32px] text-[#0c0a09]">
|
|
Dados de entrada
|
|
</h2>
|
|
</div>
|
|
|
|
<Form :validation-schema="schema" @submit="criarConta" class="grid gap-5">
|
|
<div class="grid gap-2">
|
|
<label class="m-0 text-xs font-semibold uppercase leading-[1.4] tracking-[0.96px] text-[#777169]"
|
|
for="email">
|
|
Email
|
|
</label>
|
|
<Field name="email" v-slot="{ field, meta }">
|
|
<input v-bind="field" :disabled="isLoading"
|
|
class="h-11 w-full rounded-lg border bg-white px-4 py-3 text-base leading-6 tracking-[0.16px] text-[#0c0a09] outline-none transition focus:border-2 focus:border-[#0c0a09] disabled:cursor-not-allowed disabled:opacity-50"
|
|
:class="meta.touched && !meta.valid ? 'border-red-400' : 'border-[#d6d3d1]'" type="email" id="email" />
|
|
</Field>
|
|
<ErrorMessage name="email" class="text-xs text-red-500" />
|
|
</div>
|
|
|
|
<div class="grid gap-2">
|
|
<label class="m-0 text-xs font-semibold uppercase leading-[1.4] tracking-[0.96px] text-[#777169]"
|
|
for="senha">
|
|
Senha
|
|
</label>
|
|
<Field name="password" v-slot="{ field, meta }">
|
|
<input v-bind="field" :disabled="isLoading"
|
|
class="h-11 w-full rounded-lg border bg-white px-4 py-3 text-base leading-6 tracking-[0.16px] text-[#0c0a09] outline-none transition focus:border-2 focus:border-[#0c0a09] disabled:cursor-not-allowed disabled:opacity-50"
|
|
:class="meta.touched && !meta.valid ? 'border-red-400' : 'border-[#d6d3d1]'" type="password"
|
|
id="senha" />
|
|
</Field>
|
|
<ErrorMessage name="password" class="text-xs text-red-500" />
|
|
</div>
|
|
|
|
<button type="submit" :disabled="isLoading"
|
|
class="mt-1 inline-flex h-10 items-center justify-center gap-2 rounded-full bg-[#292524] px-5 text-[15px] font-medium leading-none text-white transition hover:bg-[#0c0a09] active:bg-[#0c0a09] disabled:cursor-not-allowed disabled:opacity-70">
|
|
<Icon v-if="isLoading" name="mdi:loading" class="animate-spin text-base" />
|
|
<span v-else>Criar Conta</span>
|
|
</button>
|
|
|
|
<p class="text-center text-[15px] leading-[1.47] tracking-[0.15px] text-[#777169]">
|
|
Já tem uma conta?
|
|
<NuxtLink to="/login" class="font-medium text-[#0c0a09] underline-offset-2 hover:underline">
|
|
Fazer login
|
|
</NuxtLink>
|
|
</p>
|
|
</Form>
|
|
</section>
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { toTypedSchema } from '@vee-validate/zod'
|
|
import { z } from 'zod'
|
|
|
|
definePageMeta({ middleware: 'guest' })
|
|
|
|
const { $toast } = useNuxtApp()
|
|
|
|
const isLoading = ref(false)
|
|
|
|
const toStr = (val) => (val == null ? '' : String(val))
|
|
|
|
const schema = toTypedSchema(
|
|
z.object({
|
|
email: z.preprocess(toStr, z.string().min(1, 'Email é obrigatório').email('Email inválido')),
|
|
password: z.preprocess(toStr, z.string().min(8, 'A senha deve ter no mínimo 8 caracteres'))
|
|
})
|
|
)
|
|
|
|
async function criarConta({ email, password }) {
|
|
isLoading.value = true
|
|
try {
|
|
await $fetch('/auth/register', {
|
|
method: 'POST',
|
|
body: { email, password }
|
|
})
|
|
|
|
$toast.success('Conta criada com sucesso!', { duration: 8000 })
|
|
await navigateTo('/login')
|
|
} catch (error) {
|
|
const message = error?.data?.statusMessage
|
|
$toast.error(message ?? 'Erro ao criar conta. Tente novamente.', { duration: 8000 })
|
|
} finally {
|
|
isLoading.value = false
|
|
}
|
|
}
|
|
</script>
|