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> <label for="email">Email</label>
<input <input
name="email" 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" type="email"
class="input" class="input"
bind:value={emailInputValue} bind:value={emailInputValue}
required
autocomplete="off" autocomplete="off"
autocorrect="off" autocorrect="off"
spellcheck="true" spellcheck="true"