I am using django-crispy-forms to style the login form of the django-allauth login.html
<form class="login" method="POST" action="{% url 'account_login' %}">
{% csrf_token %}
{{ form|crispy }}
{% if redirect_field_value %}
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
{% endif %}
<a class="button secondaryAction" href="{% url 'account_reset_password' %}">{% trans "Forgot Password?" %}</a>
<button class="primaryAction" type="submit">{% trans "Sign In" %}</button>
</form>
However, the form {{ field.label }} is not "inline" with the {{ field }}. Is there a simple way to make them inline while still using django-crispy-form or something similar to polish the appearance?
I also want to learn how to hide the {{ field.label }} on display. The only thing I can think of is to loop over the fields of forms, and comment out the label display on the following answer.