There was an error while loading. Please reload this page.
1 parent 4a75ef1 commit a53022cCopy full SHA for a53022c
1 file changed
Form-Controls/index.html
@@ -15,7 +15,7 @@
15
<main>
16
<form>
17
<label for="name">Customer Name</label>
18
- <input type="text" id="name" name="name" pattern="[A-Za-z]{1,}" title="You must enter at least two characters" required />
+ <input type="text" id="name" name="name" pattern=".*\S.*\S.*" title="You must enter at least two characters" required />
19
<div>
20
<label for="email">Email</label>
21
<input type="email" id="email" name="email" required>
@@ -39,6 +39,7 @@
39
40
<label for="size">Size</label>
41
<select name="size" id="size" required>
42
+ <option disabled hidden selected required value="">Select One</option>
43
<option value="xs">XS</option>
44
<option value="s">S</option>
45
<option value="m">M</option>
0 commit comments