You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the image, it seems like the email input field hides or collapses when an invalid email is entered. This could be due to an issue with CSS or JavaScript handling the form validation.
Here’s a detailed issue report you can contribute to the repository:
Issue Title:
Email Input Field Hides on Invalid Email Submission
Description:
When an invalid email is entered in the subscription form, the input field disappears instead of staying visible for the user to correct their input. This affects the user experience, as users need to reload the page to access the input field again.
Steps to Reproduce:
Navigate to the subscription form on the website.
Enter an invalid email address (e.g., ee).
Submit the form by clicking the "Subscribe" button.
Expected Behavior:
The input field should remain visible, allowing the user to correct their input.
Actual Behavior:
The email input field hides after submission, and the error messages are displayed.
Suggested Fix:
Check the CSS for any display: none or visibility: hidden applied to the input field upon form validation failure.
Ensure the JavaScript handling form validation doesn't unintentionally modify the input field's visibility.
Update the validation script to focus the input field after displaying an error message.
Environment:
Browser: [Specify browser and version, e.g., Chrome 119.0.0]
Sir, I want to contribute to this project by fixing this error. Please advise me where I can find the file for the email input field. I have searched a lot but couldn’t locate it. Please help me identify the file location so I can fix it and create a pull request.
The text was updated successfully, but these errors were encountered:
Description
From the image, it seems like the email input field hides or collapses when an invalid email is entered. This could be due to an issue with CSS or JavaScript handling the form validation.
Here’s a detailed issue report you can contribute to the repository:
Issue Title:
Email Input Field Hides on Invalid Email Submission
Description:
When an invalid email is entered in the subscription form, the input field disappears instead of staying visible for the user to correct their input. This affects the user experience, as users need to reload the page to access the input field again.
Steps to Reproduce:
ee
).Expected Behavior:
The input field should remain visible, allowing the user to correct their input.
Actual Behavior:
The email input field hides after submission, and the error messages are displayed.
Suggested Fix:
display: none
orvisibility: hidden
applied to the input field upon form validation failure.Environment:
Suggested solution
#error-message {
color: red;
font-size: 14px;
margin-top: 4px;
position: absolute; /* Prevent layout shift /
}
input[type="email"] {
margin-bottom: 20px; / Add space for error messages */
}
Alternatives / Workarounds
No response
Additional Information
Sir, I want to contribute to this project by fixing this error. Please advise me where I can find the file for the email input field. I have searched a lot but couldn’t locate it. Please help me identify the file location so I can fix it and create a pull request.
The text was updated successfully, but these errors were encountered: