refactor: Update email input placeholder text and add required attribute to improve user experience

This commit is contained in:
Kiril Videlov 2024-03-14 12:02:55 +01:00 committed by GitButler
parent 61db260ac8
commit e0b0b85ad8

View File

@ -92,10 +92,11 @@
<label for="email">Email</label>
<input
name="email"
placeholder="Provide an email if you want to hear back from us"
placeholder="Provide an email so that we can get back to you"
type="email"
class="input"
bind:value={emailInputValue}
required
autocomplete="off"
autocorrect="off"
spellcheck="true"