Hi all :wave: is there any way to validate registr...
# talk-kratos
c
Hi all 👋 is there any way to validate registration flow inputs without submitting the flow? We have a multi step registration UI and would ideally like to validate the inputs on each step before progressing and without submitting the final form and authenticating the user. (but still validate via Kratos etc)
c
You can validate each step from the client side using the Kratos schema and in the end send the form to validate with Kratos
It should works
c
Thanks - I think that would be ok for validating email, names, etc. but is there any way to validate the password (including the haveIBeenPwned DB check) before we submit the form? We'd ideally like to not have to send the user back to the password step if they reach the last step and only then detect the password has been found in data breaches
s
I guess you are looking for https://github.com/ory/kratos/issues/136
gratitude thank you 1