Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -427,27 +427,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" value="first_name">
</p>
<p>
<label>Last name</label>
<input type="text">
<input type="text" value="last_name">
</p>
<p>
<label>Email</label>
<input type="email">
<input type="email" value="email">
</p>
<p>
<label>Phone number</label>
<input type="tel">
<input type="tel" value="phone">
</p>
<p>
<label>Password</label>
<input type="password">
<input type="password" value="password">
</p>
<p>
<label>Confirm your password</label>
<input type="password">
<input type="password" value="password_confirm">
</p>
<p>
<label>Country</label>
Expand All @@ -464,7 +464,7 @@ Select multiple options by maintaining Ctrl (or ⌘) and clicking. This can be a
</p>
<p>
<label>
<input type="checkbox">
<input type="checkbox" value="terms">
I agree to the <a href="/terms">terms and conditions</a>
</label>
</p>
Expand Down