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.
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@example.com" | ||
| > |
There was a problem hiding this comment.
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.
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.
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.
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.
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.
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