Skip to content

Commit 30d9e25

Browse files
start working on form
1 parent d28242a commit 30d9e25

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

‎Form-Controls/index.html‎

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

0 commit comments

Comments
 (0)