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

add Form #780

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

add Form #780

wants to merge 1 commit into from

Conversation

RendyDm
Copy link

@RendyDm RendyDm commented Apr 25, 2023

<label class="form-field">
Surname:
<input
type="name"

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"

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"

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"

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 📅

Comment on lines +26 to +35
<input
type="name"
name="surname"
minlength="5"
maxlength="12"
required
tabindex="1"
>
</label>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

Comment on lines +109 to +120
<div class="form-field">
<label>Do you love cats?
<input
type="radio"
name="question"
>Yes
<input
type="radio"
name="question"
>No
</label>
</div>

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

Screen.Recording.2023-04-26.at.09.46.21.mov

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants