Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #79 #80

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions _posts/2015-03-07-html-forms.md
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