There was an error while loading. Please reload this page.
1 parent a9b5770 commit 5c1e178Copy full SHA for 5c1e178
1 file changed
Form-Controls/index.html
@@ -15,11 +15,22 @@ <h1>Product Pick</h1>
15
<form>
16
<!-- write your html here-->
17
<div>
18
- <label for="name">Name</label>
19
-
+ <legend>Customer details</legend>
+ <label for="firstname">First name:</label>
20
+ <input type="text" id="firstname" name="firstname" required> <br>
21
+ <label for="lastname">Last name:</label>
22
+ <input type="text" id="lastname" name="lastname" required>
23
+ </div>
24
25
+ <div>
26
+ <label for="email"> Email:</label>
27
+ <input type="email"name="email" id="email" required>
28
29
+
30
- </div>
31
32
33
34
<!--
35
try writing out the requirements first as comments
36
this will also help you fill in your PR message later-->
0 commit comments