There was an error while loading. Please reload this page.
1 parent d845fd4 commit b9cc5f9Copy full SHA for b9cc5f9
1 file changed
Form-Controls/index.html
@@ -16,15 +16,18 @@ <h1>Product Pick</h1>
16
<form>
17
<!-- write your html here-->
18
<!-- Customer Name -->
19
- <label for="name">Full Name:</label>
20
- <input
21
- type="text"
22
- id="name"
23
- name="name"
24
- required
25
- minlength="2"
26
- placeholder="Enter your full name"
27
- />
+ <!-- Customer Name -->
+ <label for="name">Full Name:</label>
+ <input
+ type="text"
+ id="name"
+ name="name"
+ required
+ minlength="2"
+ pattern=".*\S.*"
28
+ placeholder="Enter your full name"
29
+ />
30
+
31
<br /><br />
32
33
<!-- Email -->
0 commit comments