We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filters are expensive and should be used very lightly. The ReCaptchaLoginFilter is called on every request when the reCapcha feature is enabled.
ReCaptchaLoginFilter
We should be able to improve ForgotPassword.cshtml by using shapes to create the form ForgotPasswordForm.
ForgotPassword.cshtml
ForgotPasswordForm
Also, improve Register.cshtml by using shapes to create the RegisterForm shape.
Register.cshtml
RegisterForm
Finally, improve ResetPassword.cshtml by using shapes to create the ResetPasswordForm shape.
ResetPassword.cshtml
ResetPasswordForm
This will allow us to inject reCapcha and other shapes into these forms without having the need to use filter.
The text was updated successfully, but these errors were encountered:
Convert FogotPassword views to shapes
9a6ad96
Fix #15702 Fix #12705
Successfully merging a pull request may close this issue.
Filters are expensive and should be used very lightly. The
ReCaptchaLoginFilter
is called on every request when the reCapcha feature is enabled.We should be able to improve
ForgotPassword.cshtml
by using shapes to create the formForgotPasswordForm
.Also, improve
Register.cshtml
by using shapes to create theRegisterForm
shape.Finally, improve
ResetPassword.cshtml
by using shapes to create theResetPasswordForm
shape.This will allow us to inject reCapcha and other shapes into these forms without having the need to use filter.
The text was updated successfully, but these errors were encountered: