Thank you, always appreciate your detailed tutorials. Is there a way to set each of the conditions that is not met to show individual error messages? For example, if your password is 12 characters instead of the 16 required, can it trigger just the error message that indicates you need at least 16 characters? I've seen it where the conditions that are met are opaque and the one that is missing is highlighted.
Because I know someone will appreciate: Include at least one number = (?=.*\d) or (?=.*[0-9]) Include at least one lowercase character = (?=.*[a-z]) Include at least one uppercase character = (?=.*[A-Z]) Include at least one symbol = (?=.*\W) Minimum length of 16 characters = .{16,} All together = ^(?=.\d)(?=.*[a-z])(?=.*[A-Z])(?=.*\W).{16,}$
thanks 🔥 Croco can be sometimes hard to understand and we are really happy to make it more easy in grabbing the ropes that indeed it's a powerful tool for creating complex solutions 💛
well, let's imagine the situation when if there's no restrictions, then users will use weak passwords as abc123 anyway, it's up to the user which creates websites, which passwords to force and not only passwords if the info is secure
Thank you, always appreciate your detailed tutorials. Is there a way to set each of the conditions that is not met to show individual error messages? For example, if your password is 12 characters instead of the 16 required, can it trigger just the error message that indicates you need at least 16 characters? I've seen it where the conditions that are met are opaque and the one that is missing is highlighted.
Exactly
Am also curious about this
@shaunazar
@24hotspot14
you can set different rules in the Advanced validation
and for each to set the message
Thank you again! Love the new short tutorials!
Glad you like them!
Because I know someone will appreciate:
Include at least one number = (?=.*\d) or (?=.*[0-9])
Include at least one lowercase character = (?=.*[a-z])
Include at least one uppercase character = (?=.*[A-Z])
Include at least one symbol = (?=.*\W)
Minimum length of 16 characters = .{16,}
All together = ^(?=.\d)(?=.*[a-z])(?=.*[A-Z])(?=.*\W).{16,}$
thanks 💛
Thank you 🙂
Thanks. Everyday you show us that crocoblock can help us building complex websites.
thanks 🔥
Croco can be sometimes hard to understand and we are really happy to make it more easy in grabbing the ropes that indeed it's a powerful tool for creating complex solutions 💛
Great Tutorial!!!! Thank you so much!! Keep on the good work!!
thanks a lot 💙
What about the password reset fields?
could you please elaborate a bit on your question so I could better understand you?
what exactly do you need?
@@Crocoblock We need this same validation in the password reset page, which I cannot find it anywhere. Where is the reset password page or template?
Hello crocoblock team,
Can u please make a video about
How to export registred users using jet form builder to google spread sheet Thank you ❤
I will pass it to the content department
as for now, you can follow this guide jetformbuilder.com/features/how-to-connect-jetformbuilder-to-any-app/
It should be the user's option to use strong passwords not the website builder. Maybe except for websites that have personal information.
well, let's imagine the situation when if there's no restrictions, then users will use weak passwords as abc123
anyway, it's up to the user which creates websites, which passwords to force and not only passwords if the info is secure