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
Maybe I have been overlooking something, but removing the "Forgot" button isn't as easy as I would expect.
The following seems an easy implementation for a simple config switch:
login-form.html.twig
{% if page.header.form.login.forgot_button ?? true %}
{% if page.header.form.login.forgot_button ?? true and config.plugins.login.forgot_button ?? true %}
Now the user can simply create the following config in /user/config/plugins/login.yaml:
/user/config/plugins/login.yaml
forgot_button: false
Note: Shouldn't page.header.form be page.header.forms?
page.header.form
page.header.forms
The text was updated successfully, but these errors were encountered:
It appears that clearing the "forgot" route in the plugin config hides the link.
Sorry, something went wrong.
No branches or pull requests
Maybe I have been overlooking something, but removing the "Forgot" button isn't as easy as I would expect.
The following seems an easy implementation for a simple config switch:
login-form.html.twig
replace:Now the user can simply create the following config in
/user/config/plugins/login.yaml
:Note: Shouldn't
page.header.form
bepage.header.forms
?The text was updated successfully, but these errors were encountered: