🎨 Format files, Added codeberg to links,lighter colour for linkcards
All checks were successful
Build and deploy website / build (push) Successful in 33s

This commit is contained in:
2025-02-15 14:59:32 +01:00
parent 04f279dab3
commit cb00252364
30 changed files with 151 additions and 103 deletions

View File

@ -4,14 +4,20 @@ import * as m from "@/paraglide/messages.js"
// TODO self-host email server
---
<form class="flex flex-col gap-2 max-w-[500px] mx-auto" method="post" action="https://formspree.io/f/mknykgbn">
<form
class="flex flex-col gap-2 max-w-[500px] mx-auto"
method="post"
action="https://formspree.io/f/mknykgbn"
>
<Input label={m.name()} type="text" name="name" required />
<Input label={m.subject()} name="subject" required />
<Input label={m.email()} name="_replyto" />
<input name="_gotcha" type="text" class={"hidden"} /> { /*Honeypot spam filter*/}
<input name="_gotcha" type="text" class={"hidden"} />
{/*Honeypot spam filter*/}
<label class="flex flex-col">
{m.message()}
<textarea name="message" class="textarea textarea-bordered" required></textarea>
<textarea name="message" class="textarea textarea-bordered" required
></textarea>
</label>
<button type="submit">{m.send()}</button>
</form>