Skip to content

Commit

Permalink
fix(html): Update attribute-autocomplete.html (#2530)
Browse files Browse the repository at this point in the history
Updated attribute-autocomplete.html to include id's corresponding to the respective labels' for attributes. Resolving issue #27126.
  • Loading branch information
Phil-G-94 committed Jun 13, 2023
1 parent 7ab1229 commit a5c281e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<label for="firstName">First Name:</label>
<input name="firstName" type="text" autocomplete="given-name">
<input name="firstName" id="firstName" type="text" autocomplete="given-name">

<label for="lastName">Last Name:</label>
<input name="lastName" type="text" autocomplete="family-name">
<input name="lastName" id="lastName" type="text" autocomplete="family-name">

<label for="email">Email:</label>
<input name="email" type="email" autocomplete="off">
<input name="email" id="email" type="email" autocomplete="off">

0 comments on commit a5c281e

Please sign in to comment.