inquiries and claims
ci / docker_image (push) Successful in 3m18s
ci / deploy (push) Successful in 28s

This commit is contained in:
2026-02-05 19:09:34 -06:00
parent 331765d21e
commit 505434a2d8
14 changed files with 686 additions and 76 deletions
@@ -9,6 +9,7 @@
import ImageUpload from '$lib/components/custom/image-upload/image-upload.svelte';
import { genDescription } from '$lib/db/items.remote';
import { EMAIL_REGEX_STRING } from '$lib/consts';
import { Textarea } from '$lib/components/ui/textarea';
let itemLocation: string | undefined = $state('');
let foundLocation: string | undefined = $state();
@@ -41,12 +42,13 @@
<Field.Label for="description">
Description <span class="text-error">*</span>
</Field.Label>
<Input
<Textarea
id="description"
name="description"
bind:value={description}
placeholder="A red leather book bag..."
maxlength={200}
rows={3}
required
/>
</Field.Field>
@@ -60,7 +62,6 @@
name="foundLocation"
bind:value={foundLocation}
placeholder="By the tennis courts."
required
/>
</Field.Field>
@@ -84,7 +85,7 @@
class={itemLocation !== "finderPossession" ? "hidden pointer-events-none opacity-50" : ""}
>
<Field.Label for="email">
Your Email
Your Email <span class="text-error">*</span>
</Field.Label>
<Input
id="email"