There was an error while loading. Please reload this page.
1 parent 9b1da51 commit 05ed32dCopy full SHA for 05ed32d
1 file changed
Form-Controls/index.html
@@ -11,20 +11,26 @@
11
<header>
12
<h1>Product Pick</h1>
13
</header>
14
+
15
<main>
16
<form>
17
<!-- REQUIREMENTS -->
18
<!-- what is the custome's name? (min 2 characters) -->
19
<div>
20
<label for="name">Full Name:</label>
- <input type="text" id="name" name="name" />
21
+ <input type="text" id="name" name="name" required mainlength="2" pattern=".{2,}" />
22
</div>
23
- <dv>
24
+ <!-- What is the customer's email? (must be valid) -->
25
+ <div>
26
<label for="email">Email Address:</label>
- <input type="email" id="email" name="email" />
- </dv>
27
-
+ <input type="email" id="email" name="email" required />
28
+ </div>
29
30
+ <!-- What colour should this t-shirt be? (only 3 options) -->
31
+ <fieldset>
32
33
+ </fieldset>
34
35
</form>
36
</main>
0 commit comments