You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey,
The buttons for "Register" and "Login" aren't rendered in Bootstrap 4, and instead use Django's default style. This is unusual because the "Contact" page's form works correctly.
Each page is rendered using Bootstrap 4 by using Crispy Form's FormHelper class, a la
This helper class renders the button with all the other fields, instead of the previous system that added the input button as a separate tag in the template files.
Login's form uses a modified AuthenticationForm from forms.py, which is installed with Django (which I just found out doesn't push with the other edited documents, is it feasible to allow me to edit the default forms and store them elsewhere?)
Hey,
The buttons for "Register" and "Login" aren't rendered in Bootstrap 4, and instead use Django's default style. This is unusual because the "Contact" page's form works correctly.
Each page is rendered using Bootstrap 4 by using Crispy Form's FormHelper class, a la
DRP/DRP/forms/contact.py
Line 14 in 419fe62
This helper class renders the button with all the other fields, instead of the previous system that added the input button as a separate tag in the template files.
Login's form uses a modified AuthenticationForm from forms.py, which is installed with Django (which I just found out doesn't push with the other edited documents, is it feasible to allow me to edit the default forms and store them elsewhere?)
Register's base form:
DRP/DRP/forms/authentication.py
Line 28 in 419fe62
Contact.py's working button:
DRP/DRP/forms/contact.py
Line 18 in 419fe62
The text was updated successfully, but these errors were encountered: