-
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
add Form #780
base: master
Are you sure you want to change the base?
add Form #780
Conversation
RendyDm
commented
Apr 25, 2023
- DEMO LINK
- TEST REPORT LINK
<label class="form-field"> | ||
Surname: | ||
<input | ||
type="name" |
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.
Change the input type from 'name' to 'text' for the Surname field 🧐
|
||
<label class="form-field">Password: | ||
<input | ||
type="Password" |
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.
Change the input type from 'Password' to 'password' for the Password field 🔒
<label class="form-field"> | ||
Name: | ||
<input | ||
type="name" |
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.
Change the input type from 'name' to 'text' for the Name field 🧐
<label class="form-field"> | ||
Full data of birth: | ||
<input | ||
type="data" |
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.
Change the input type from 'data' to 'date' for the Full data of birth field 📅
<input | ||
type="name" | ||
name="surname" | ||
minlength="5" | ||
maxlength="12" | ||
required | ||
tabindex="1" | ||
> | ||
</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.
<div class="form-field"> | ||
<label>Do you love cats? | ||
<input | ||
type="radio" | ||
name="question" | ||
>Yes | ||
<input | ||
type="radio" | ||
name="question" | ||
>No | ||
</label> | ||
</div> |
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.
cover each input in a separate label to avoid this behavior