Skip to content

Commit 21ad88b

Browse files
Added email input
1 parent d5fd617 commit 21ad88b

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

Form-Controls/index.html

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,29 @@ <h1>Product Pick</h1>
2222
<form>
2323

2424
<!-- This is a customer name input -->
25-
25+
2626
<div>
2727
<label class="blk" for="nam">First Name* </label>
2828
<input type="text" id="nam" name="name" placeholder="Enter Your Name" pattern=".*\S.*\S.*" required>
2929
</div>
3030

31+
<br>
32+
33+
<div>
34+
<label class="blk" for="nams">Last Name* </label>
35+
<input type="text" id="nams" name="name" placeholder="Enter Your Name" pattern=".*\S.*\S.*" required>
36+
</div>
37+
38+
<br>
39+
40+
41+
<!-- This is a customer email input -->
42+
<div>
43+
<label class="blk" for="mail">Email* </label>
44+
<input type="email" id="mail" placeholder="Enter Your Email" name="Email" required>
45+
</div>
46+
47+
<br>
3148

3249
</form>
3350
</main>

0 commit comments

Comments
 (0)