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
Use attribute "no validate" in the registration form.
{{ form_start(registrationForm, { 'attr': { 'novalidate': 'novalidate' } }) }} {# ... #} {{ form_end(registrationForm) }}
Nothing appears when clicking "S'inscrire" (no violations or form errors in the debug bar either):
Expected behavior :
Replace :
return $this->render('registration/register.html.twig', [ 'registrationForm' => $form->createView(), ]);
with :
return $this->render('registration/register.html.twig', [ 'registrationForm' => $form, ]);
The text was updated successfully, but these errors were encountered:
createView()
I haven't managed to reproduce the bug by starting again with a new project. I have form violations and errors appearing in my form.
However, I've still created a PR to remove the creatView() methods, as it's no longer needed to render the form.
creatView()
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
How to reproduce
Use attribute "no validate" in the registration form.
Nothing appears when clicking "S'inscrire" (no violations or form errors in the debug bar either):
Expected behavior :
How to fix
Replace :
with :
The text was updated successfully, but these errors were encountered: