For the sake of consistency I want to use crispy with my login form.
I'm using 'django.contrib.auth.views.login'
and I'm only coding the template.
The problem is {% crispy form %}
doesn’t output submit button nor "next" hidden field.
Is there any way to create FormHelper
outside of forms.py
( it's in contrib.auth so I would need to try to extend AuthenticationForm
or something like it) an then use it in the template without modifying views.py
(also in contrib.auth)
If it would require any ninjitsu with extending classes etc. I will go with pure HTML but if there is a simple way to include 'external' FormHelper
on the template level i would regret not asking