Skip to content

Commit 3202a19

Browse files
removed the cosing tag from the input element of first-name, last-name, email and password
1 parent 790019b commit 3202a19

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Form-Controls/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,28 +17,28 @@ <h1>Product Pick</h1>
1717
<fieldset>
1818
<label for = "first-name">First Name</label>
1919
<input type="text" id="first-name" name="first-name" required pattern=".*\S.*\S.*"
20-
aria-describedby="fnameHelp"</>
20+
aria-describedby="fnameHelp">
2121
<small id="fnameHelp">Must be at least 2 characters long</small>
2222
</fieldset>
2323
<!-- Last name-->
2424
<fieldset>
2525
<label for = "last-name">Last Name</label>
2626
<input type="text" id="last-name" name="last-name" required pattern=".*\S.*\S.*"
27-
aria-describedby="lnameHelp"</>
27+
aria-describedby="lnameHelp">
2828
<small id="lnameHelp">Must be at least 2 characters long</small>
2929
</fieldset>
3030
<!-- Email-->
3131
<fieldset>
3232
<label for = "email">Email</label>
3333
<input type="email" id="email" name="email" required pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$"
34-
aria-describedby="emailHelp"</>
34+
aria-describedby="emailHelp">
3535
<small id="emailHelp">Must be a valid email address</small>
3636
</fieldset>
3737
<!-- Password-->
3838
<fieldset>
3939
<label for = "password">Password</label>
4040
<input type="password" id="password" name="password" required pattern="^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{8,}$"
41-
aria-describedby="passwordHelp"</>
41+
aria-describedby="passwordHelp">
4242
<small id="passwordHelp">Must be at least 8 characters long and include at least one uppercase letter, one lowercase letter, one number, and one special character</small>
4343
</fieldset>
4444
<!--Shirt Color-->

0 commit comments

Comments
 (0)