Design comparison
SolutionDesign
Solution retrospective
Feedbacks are welcome.🚀
Happy Coding!🫡
Community feedback
- @kimodev1990Posted 11 months ago
Really great work, Just a few feedbacks :
- If I don't enter an email or entered a wrong form of email in the input , Then you entered the right email , the label error doesn't disappears .
we could adjust in javascript :
btn.addEventListener('click', function(){ if (!email.value.match(/^[^\s@]+@[^\s@]+\.[^\s@]+$/)) { retryMessage.classList.add('hidden') errorIcon.classList.add('hidden') } else { retryMessage.classList.remove('hidden') errorIcon.classList.remove('hidden') } })
Hope you find this Helpful.
Other than that, Keep on the great work.
Marked as helpful0 - @yagnik0Posted 11 months ago
Thank you, for taking your time to review my code.!😊
Yeah I do noticed it now I'll soon implement it.😁
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