Intro component with sign up form by professor_mr
Design comparison
Community feedback
- Account deleted
Hello @ProfessorMR, your project really match de design samples!
I noticed that the email validation does not work at all. It allows the user to just enter a number or letter as a valid email... Checking your
/index.js
file I saw that in the line32
the functionisEmail
is not being called:else if(!(isEmail))
. Because of this the RegEx test of line66
do not execute... Just calling it likeisEmail()
should work.Furthermore a
type="email"
instead of atype="text"
could be added to the input field in line34
of yourindex.html
file and automatic browser checking would be performed as well.I hope that works, best wishes!
Marked as helpful1@ProfessorMRPosted over 2 years ago@alexcumplido Thank you very much for the bug report❤️ I fixed the problem
1Account deletedGreat to know @ProfessorMR , we'll meet again other projects : )
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord