Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Crawleyprint/cc05dc2532eca53d0f81 to your computer and use it in GitHub Desktop.
Save Crawleyprint/cc05dc2532eca53d0f81 to your computer and use it in GitHub Desktop.
<script>
$('#login').click(function() {
$.post(
"/",
{
username: $("#id_username").val(),
password: $("#id_password").val(),
csrfmiddlewaretoken: $.cookie("csrftoken"),
next: $("#id_next").val()
},
function() {
window.location.replace("/");
}
)
.fail(function(response, status) {
alert("Status: " + status + "\nResponse: " + response);
})
;
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment