There was an error while loading. Please reload this page.
1 parent 9e12162 commit 10dcfdbCopy full SHA for 10dcfdb
1 file changed
Form-Controls/index.html
@@ -14,9 +14,14 @@ <h1>Product Pick</h1>
14
<main>
15
<form>
16
<div>
17
- <label>Name</label>
18
- <input>
+ <label for="full-name">Name</label>
+ <input type="text" id="full-name" name="full-name" required minlength="2" pattern=".*\S,*\S.*" title="Please enter at least two nonspace characters">
19
</div>
20
+ <div>
21
+ <label for="email">Email</label>
22
+ <input type="email" id="email" name="email" required>
23
+
24
+ </div>
25
<button>submit</button>
26
<!--
27
checklist:
0 commit comments