You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
492 B

$(function () {
$("#signup-go").on("click", function() {
var email = $("#signup-email").val();
var token = $('input[name=csrfmiddlewaretoken]').val();
$.ajax({
url: "/accounts/signup/",
type: "post",
headers: {"X-CSRFToken": token},
data: {"identity": email},
success: function(data) {
$("#signup-result").html(data).show();
}
});
return false;
});
});