-
Notifications
You must be signed in to change notification settings - Fork 625
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
commit #778
base: master
Are you sure you want to change the base?
commit #778
Conversation
src/index.html
Outdated
<fieldset class="fieldset"> | ||
<legend>An interesting fact about you!</legend> | ||
<div class="field"> | ||
<label for="yes"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
redundant label. with this label click on text Do you love cats
select first radio button
# Conflicts: # src/index.html
type="email" | ||
id="user-email" | ||
placeholder="[email protected]" | ||
> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a name
attribute to the email input element so it can be submitted with the form. For example: name="email"
type="password" | ||
id="user-password" | ||
minlength="6" | ||
> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a name
attribute to the password input element so it can be submitted with the form. For example: name="password"
<label for="color"> | ||
What is your favorite color? | ||
<input type="color" id="color"> | ||
</label> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a name
attribute to the color input element so it can be submitted with the form. For example: name="favorite-color"
type="time" | ||
id="time" | ||
step="1" | ||
> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a name
attribute to the time input element so it can be submitted with the form. For example: name="bed-time"
<label class="field" for="comments"> | ||
Comments: | ||
<textarea id="comments"></textarea> | ||
</label> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a name
attribute to the textarea element so it can be submitted with the form. For example: name="comments"
<div class="field"> | ||
<label for="accept-term"> | ||
I accept the term of the agreement | ||
<input type="checkbox" id="accept-term"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a name
attribute to the checkbox input element so it can be submitted with the form. For example: name="accept-term"
DEMO LINK
TEST REPORT LINK