There was an error while loading. Please reload this page.
1 parent dcbfa4a commit 6013fc6Copy full SHA for 6013fc6
1 file changed
Form-Controls/index.html
@@ -14,12 +14,12 @@ <h1>Product Pick</h1>
14
<main>
15
<form>
16
<div>
17
- <label>Customer Name: </label>
18
- <input required minlength="2" pattern=".*\S.*\S.*">
+ <label for="name">Customer Name: </label>
+ <input type="text" name="name" id="name" placeholder="enter your name" required minlength="2" pattern=".*\S.*\S.*">
19
</div><br/>
20
21
- <label>Customer Email: </label>
22
- <input type="email" required placeholder="you@example.com">
+ <label for="email">Customer Email: </label>
+ <input type="email" name="email" id="email" placeholder="you@example.com" required>
23
</div>
24
25
<p>Choose a T‑shirt colour:</p>
0 commit comments