From 312466414f2e53b1d5bfc6913a5efbe64d6d95fd Mon Sep 17 00:00:00 2001 From: patrick Date: Sun, 29 Mar 2026 08:15:16 -0400 Subject: [PATCH] add autocomplete attribute to the email field --- src/components/svelte/ContactForm.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/svelte/ContactForm.svelte b/src/components/svelte/ContactForm.svelte index d40e73c..c57c123 100644 --- a/src/components/svelte/ContactForm.svelte +++ b/src/components/svelte/ContactForm.svelte @@ -141,6 +141,7 @@ id="email" name="email" placeholder="your.email@example.com" + autocomplete="email" required disabled={formState === 'submitting'} class="w-full rounded-md border border-border bg-background px-4 py-2.5 text-foreground placeholder:text-muted-foreground focus:border-primary focus:outline-none focus:ring-2 focus:ring-primary/20 disabled:cursor-not-allowed disabled:opacity-50 transition-all duration-200"