[Answered ]-Does the CSRF info change when logging in via ajax request?

2👍

The csrf token is rotated when the user logs in. This was added as a security measure in Django 1.5.2 (release notes).

After the ajax request, you might be able to fetch the new csrf token from the cookie, and update the form in the DOM. Alternatively, you could refresh the page after the user is logged in.

Leave a comment