[Answer]-Django view for password_reset_confirm.html

1👍

The action attribute should be empty so that the form is sent to the current URL.

This is the common pattern for form handling in Django: a URL displays a form on a GET request and processes it on a POST request.

Leave a comment