Skip to content

Commit

Permalink
jgthms#92 fix: fixed example form as well
Browse files Browse the repository at this point in the history
  • Loading branch information
blizzardengle committed Mar 12, 2021
1 parent ae5d042 commit 14db4a0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions _posts/2015-03-07-html-forms.md
Original file line number Diff line number Diff line change
Expand Up @@ -452,27 +452,27 @@ Select multiple options by maintaining Ctrl (or ⌘) and clicking. This can be a
</p>
<p>
<label>First name</label>
<input type="text">
<input type="text" name="first-name">
</p>
<p>
<label>Last name</label>
<input type="text">
<input type="text" name="last-name">
</p>
<p>
<label>Email</label>
<input type="email">
<input type="email" name="email">
</p>
<p>
<label>Phone number</label>
<input type="tel">
<input type="tel" name="phone">
</p>
<p>
<label>Password</label>
<input type="password">
<input type="password" name="pass-1">
</p>
<p>
<label>Confirm your password</label>
<input type="password">
<input type="password" name="pass-2">
</p>
<p>
<label>Country</label>
Expand All @@ -489,7 +489,7 @@ Select multiple options by maintaining Ctrl (or ⌘) and clicking. This can be a
</p>
<p>
<label>
<input type="checkbox">
<input type="checkbox" name="terms">
I agree to the <a href="/terms">terms and conditions</a>
</label>
</p>
Expand Down

0 comments on commit 14db4a0

Please sign in to comment.