2023-05-21 05:18:04 +00:00
|
|
|
<script lang="ts">
|
2023-07-30 23:31:39 +00:00
|
|
|
import { page } from '$app/stores';
|
|
|
|
|
import { superForm } from 'sveltekit-superforms/client';
|
|
|
|
|
import * as flashModule from 'sveltekit-flash-message/client';
|
2023-07-31 01:18:39 +00:00
|
|
|
import { ChevronsUpDown } from "lucide-svelte";
|
2023-06-30 22:08:45 +00:00
|
|
|
import Button from '$components/ui/button/Button.svelte';
|
|
|
|
|
import Input from '$components/ui/input/Input.svelte';
|
2023-07-30 23:31:39 +00:00
|
|
|
import Label from '$components/ui/label/Label.svelte';
|
|
|
|
|
import { userSchema } from '$lib/config/zod-schemas.js';
|
|
|
|
|
import toast from 'svelte-french-toast';
|
2023-07-31 01:18:39 +00:00
|
|
|
import {
|
|
|
|
|
Collapsible,
|
|
|
|
|
CollapsibleContent,
|
|
|
|
|
CollapsibleTrigger
|
|
|
|
|
} from "$components/ui/collapsible";
|
2023-05-21 05:18:04 +00:00
|
|
|
|
|
|
|
|
export let data;
|
2023-07-31 01:18:39 +00:00
|
|
|
let isOpen = false;
|
2023-05-21 05:18:04 +00:00
|
|
|
|
|
|
|
|
const signUpSchema = userSchema.pick({
|
|
|
|
|
firstName: true,
|
|
|
|
|
lastName: true,
|
|
|
|
|
username: true,
|
|
|
|
|
email: true,
|
2023-06-20 18:55:21 +00:00
|
|
|
password: true,
|
|
|
|
|
confirm_password: true
|
2023-05-21 05:18:04 +00:00
|
|
|
});
|
|
|
|
|
|
2023-05-24 06:28:23 +00:00
|
|
|
const { form, errors, constraints, enhance, delayed } = superForm(data.form, {
|
2023-07-30 23:31:39 +00:00
|
|
|
flashMessage: {
|
|
|
|
|
module: flashModule,
|
|
|
|
|
onError: ({ result, message }) => {
|
|
|
|
|
const errorMessage = result.error.message;
|
|
|
|
|
message.set({ type: 'error', message: errorMessage });
|
2023-07-31 01:18:39 +00:00
|
|
|
},
|
2023-07-30 23:31:39 +00:00
|
|
|
},
|
2023-05-21 05:18:04 +00:00
|
|
|
taintedMessage: null,
|
|
|
|
|
validators: signUpSchema,
|
|
|
|
|
delayMs: 0,
|
|
|
|
|
});
|
2023-07-30 23:31:39 +00:00
|
|
|
|
|
|
|
|
const flash = flashModule.getFlash(page);
|
|
|
|
|
|
|
|
|
|
$: {
|
|
|
|
|
if ($flash) {
|
|
|
|
|
toast.error($flash.message, {
|
|
|
|
|
duration: 5000
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-21 05:18:04 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<div class="page">
|
|
|
|
|
<form method="POST" action="/auth/signup" use:enhance>
|
2023-07-01 23:12:17 +00:00
|
|
|
<div class="grid w-full max-w-sm items-center gap-2.5">
|
2023-06-30 22:08:45 +00:00
|
|
|
<h2
|
|
|
|
|
class="scroll-m-20 border-b pb-2 text-3xl font-semibold tracking-tight transition-colors first:mt-0"
|
|
|
|
|
>
|
|
|
|
|
Signup for an account
|
|
|
|
|
</h2>
|
2023-07-31 01:18:39 +00:00
|
|
|
<Label for="username">Username <small class="text-destructive">(Required)</small></Label>
|
2023-07-01 23:12:17 +00:00
|
|
|
<Input type="text" id="username" class={$errors.username && "outline outline-destructive"} name="username" placeholder="Username" autocomplete="username" data-invalid={$errors.username} bind:value={$form.username} />
|
2023-05-21 05:18:04 +00:00
|
|
|
{#if $errors.username}
|
2023-06-30 23:02:45 +00:00
|
|
|
<p class="text-sm text-destructive">{$errors.username}</p>
|
2023-05-21 05:18:04 +00:00
|
|
|
{/if}
|
2023-07-31 01:18:39 +00:00
|
|
|
<Label for="password">Password <small class="text-destructive">(Required)</small></Label>
|
2023-07-01 23:12:17 +00:00
|
|
|
<Input type="password" id="password" class={$errors.password && "outline outline-destructive"} name="password" placeholder="Password" autocomplete="new-password" data-invalid={$errors.password} bind:value={$form.password} />
|
2023-05-21 05:18:04 +00:00
|
|
|
{#if $errors.password}
|
2023-06-30 23:02:45 +00:00
|
|
|
<p class="text-sm text-destructive">{$errors.password}</p>
|
2023-05-21 05:18:04 +00:00
|
|
|
{/if}
|
2023-07-31 01:18:39 +00:00
|
|
|
<Label for="confirm_password">Confirm Password <small class="text-destructive">(Required)</small></Label>
|
2023-07-01 23:12:17 +00:00
|
|
|
<Input type="password" id="confirm_password" class={$errors.confirm_password && "outline outline-destructive"} name="confirm_password" placeholder="Confirm Password" autocomplete="new-password" data-invalid={$errors.confirm_password} bind:value={$form.confirm_password} />
|
2023-06-20 18:55:21 +00:00
|
|
|
{#if $errors.confirm_password}
|
2023-06-30 23:02:45 +00:00
|
|
|
<p class="text-sm text-destructive">{$errors.confirm_password}</p>
|
2023-06-20 18:55:21 +00:00
|
|
|
{/if}
|
2023-07-31 01:18:39 +00:00
|
|
|
<Collapsible open={isOpen} class="grid w-full max-w-sm items-center gap-2.5">
|
|
|
|
|
<div>
|
|
|
|
|
Optional Fields:
|
|
|
|
|
<CollapsibleTrigger>
|
|
|
|
|
<Button variant="ghost" size="sm" type="button" class="w-9 p-0">
|
|
|
|
|
<ChevronsUpDown class="h-4 w-4" />
|
|
|
|
|
<span class="sr-only">Toggle</span>
|
|
|
|
|
</Button>
|
|
|
|
|
</CollapsibleTrigger>
|
|
|
|
|
</div>
|
|
|
|
|
<CollapsibleContent>
|
|
|
|
|
<Label for="email">Email</Label>
|
|
|
|
|
<Input type="email" id="email" class={$errors.email && "outline outline-destructive"} name="email" placeholder="Email" autocomplete="email" data-invalid={$errors.email} bind:value={$form.email} />
|
|
|
|
|
{#if $errors.email}
|
|
|
|
|
<p class="text-sm text-destructive">{$errors.email}</p>
|
|
|
|
|
{/if}
|
|
|
|
|
</CollapsibleContent>
|
|
|
|
|
<CollapsibleContent>
|
|
|
|
|
<Label for="firstName">First Name</Label>
|
|
|
|
|
<Input type="text" id="firstName" class={$errors.firstName && "outline outline-destructive"} name="firstName" placeholder="First Name" autocomplete="given-name" data-invalid={$errors.firstName} bind:value={$form.firstName} />
|
|
|
|
|
{#if $errors.firstName}
|
|
|
|
|
<p class="text-sm text-destructive">{$errors.firstName}</p>
|
|
|
|
|
{/if}
|
|
|
|
|
</CollapsibleContent>
|
|
|
|
|
<CollapsibleContent>
|
|
|
|
|
<Label for="firstName">Last Name</Label>
|
|
|
|
|
<Input type="text" id="lastName" class={$errors.firstName && "outline outline-destructive"} name="lastName" placeholder="Last Name" autocomplete="family-name" data-invalid={$errors.lastName} bind:value={$form.lastName} />
|
|
|
|
|
{#if $errors.lastName}
|
|
|
|
|
<p class="text-sm text-destructive">{$errors.lastName}</p>
|
|
|
|
|
{/if}
|
|
|
|
|
</CollapsibleContent>
|
|
|
|
|
</Collapsible>
|
2023-07-01 23:12:17 +00:00
|
|
|
<div class="grid grid-cols-2">
|
2023-06-30 22:08:45 +00:00
|
|
|
<Button type="submit">Signup</Button>
|
|
|
|
|
<Button variant="link" href="/">or Cancel</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-05-21 05:18:04 +00:00
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
</style>
|