From f80b8f53915e25509d92b90c4dfe57ce89b891e8 Mon Sep 17 00:00:00 2001 From: Bradley Shellnut Date: Fri, 30 Jun 2023 16:02:45 -0700 Subject: [PATCH] Changing errors to a descructive color. --- src/routes/auth/signup/+page.svelte | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/routes/auth/signup/+page.svelte b/src/routes/auth/signup/+page.svelte index c0f9fae..49b947e 100644 --- a/src/routes/auth/signup/+page.svelte +++ b/src/routes/auth/signup/+page.svelte @@ -34,32 +34,32 @@ import { userSchema } from '$lib/config/zod-schemas.js'; {#if $errors.firstName} -

{$errors.firstName}

+

{$errors.firstName}

{/if} {#if $errors.lastName} -

{$errors.lastName}

+

{$errors.lastName}

{/if} {#if $errors.email} -

{$errors.email}

+

{$errors.email}

{/if} {#if $errors.username} -

{$errors.username}

+

{$errors.username}

{/if} {#if $errors.password} -

{$errors.password}

+

{$errors.password}

{/if} {#if $errors.confirm_password} -

{$errors.confirm_password}

+

{$errors.confirm_password}

{/if}