Which file does 'account_login' in login.html point to?

In /opt/mailman/venv/lib/python3.9/site-packages/django_mailman3/templates/account/
<form class="login form-horizontal" method="POST" action="{% url 'account_login' %}"> #<-----------Here {% bootstrap_form_horizontal form 2 4 %} {% if redirect_field_value %} <input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" /> {% endif %} <div class="form-group"> <div class="offset-md-2 col-md-4"> <button class="btn btn-primary" type="submit">{% trans "Sign In" %}</button> <a href="{% url 'account_reset_password' %}">{% trans "Forgot Password?" %}</a> </div> </div> </form>

On 5/8/25 09:31, Kim Sunggun via Mailman-users wrote:
In /opt/mailman/venv/lib/python3.9/site-packages/django_mailman3/templates/account/
<form class="login form-horizontal" method="POST" action="{% url 'account_login' %}"> #<-----------Here
See /opt/mailman/venv/lib/python3.9/site-packages/allauth/account/urls.py which contains
urlpatterns = [
path("login/", views.login, name="account_login"),
path("logout/", views.logout, name="account_logout"),
path("inactive/", views.account_inactive, name="account_inactive"),
]
and the account_login
url points to login
/opt/mailman/venv/lib/python3.9/site-packages/allauth/account/views.py
The templates in /opt/mailman/venv/lib/python3.9/site-packages/django_mailman3/templates/account/ are essentially all redefinitions of those in /opt/mailman/venv/lib/python3.9/site-packages/allauth/templates/account/ for the purpose of adding django_mailman3 styling.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
participants (2)
-
Kim Sunggun
-
Mark Sapiro