Skip to content

Commit e4d7a04

Browse files
committed
Started work
1 parent ff7b9d0 commit e4d7a04

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

Form-Controls/index.html

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,20 @@ <h1>Product Pick</h1>
1313
</header>
1414
<main>
1515
<form>
16+
<label for="name">Name</label>
17+
<input type="text" id="name" required>
18+
<label for="email">Email</label>
19+
<input type="email" id="email" required>
20+
1621
<!-- write your html here-->
17-
<!--
22+
<!-- What is the customer's name? I must collect this data and ensure it contains at least two non-space characters.
23+
24+
What is the customer's email? I must make sure the email is valid. Email addresses follow a consistent pattern.
25+
26+
What colour should this T-shirt be? I must provide 3 options. How will I ensure they do not choose other colours?
27+
28+
What size does the customer want? I must provide the following 6 options: XS, S, M, L, XL, XXL
29+
1830
try writing out the requirements first as comments
1931
this will also help you fill in your PR message later-->
2032
</form>

0 commit comments

Comments
 (0)