Skip to content

Commit fc45f4c

Browse files
Fix input pattern for name field and update footer author name in index.html
1 parent 775f697 commit fc45f4c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

‎Form-Controls/index.html‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h1>Product Pick</h1>
2323
<legend>Customer Details</legend>
2424
<p>
2525
<label for="name">Name</label>
26-
<input pattern="`.*\S.*\S.*`" type="text" for="name" id="name">
26+
<input pattern=".*\S.*\S.*" type="text" for="name" id="name" required>
2727
</p>
2828

2929
<p>
@@ -67,7 +67,7 @@ <h1>Product Pick</h1>
6767
</main>
6868
<footer>
6969
<!-- change to your name-->
70-
<p>By HOMEWORK SOLUTION</p>
70+
<p>By Taha Elmahmoudi</p>
7171
</footer>
7272
</body>
7373
</html>

0 commit comments

Comments
 (0)