Files
better-auth/examples/nuxt-example/pages/sign-up.vue
Bereket Engida a50239aecd chore: lint
2024-09-29 09:34:28 +03:00

68 lines
1.9 KiB
Vue

<script lang="ts" setup>
import { signUp } from "~/lib/auth-client.js";
const firstName = ref("");
const lastName = ref("");
const email = ref("");
const password = ref("");
const handleSignUp = async () => {
const user = {
firstName: firstName.value,
lastName: lastName.value,
email: email.value,
password: password.value,
};
await signUp.email({
email: user.email,
password: user.password,
name: `${user.firstName} ${user.lastName}`,
callbackURL: "/",
fetchOptions: {
onError(context) {
alert(context.error.message);
},
},
});
};
</script>
<template>
<div class="h-screen flex justify-center items-center">
<Card class="mx-auto max-w-sm">
<CardHeader>
<CardTitle class="text-xl">Sign Up</CardTitle>
<CardDescription>
Enter your information to create an account
</CardDescription>
</CardHeader>
<CardContent>
<div class="grid gap-4">
<div class="grid grid-cols-2 gap-4">
<div class="grid gap-2">
<Label for="first-name">First name</Label>
<Input id="first-name" placeholder="Max" required v-model="firstName" />
</div>
<div class="grid gap-2">
<Label for="last-name">Last name</Label>
<Input id="last-name" placeholder="Robinson" required v-model="lastName" />
</div>
</div>
<div class="grid gap-2">
<Label for="email">Email</Label>
<Input id="email" type="email" placeholder="m@example.com" required v-model="email" />
</div>
<div class="grid gap-2">
<Label for="password">Password</Label>
<Input id="password" type="password" v-model="password" />
</div>
<Button type="button" class="w-full" @click="handleSignUp">Create an account</Button>
</div>
<div class="mt-4 text-center text-sm">
Already have an account?
<a href="/sign-in" class="underline"> Sign in </a>
</div>
</CardContent>
</Card>
</div>
</template>