Untitled
Anonymous
plain_text
05/13/2021 4:45 AM
488 B
24
Indexable
<script>
$("#submit").click(function(e){
e.preventDefault();
$.post("http://localhost:8080/api/login", { email:"[email protected]", password:"tst"}, function (data) {
alert("Data: " + JSON.stringify(data));
}).fail(function(xhr, textStatus, errorThrown){
alert(xhr.responseText);
})
})
</script>Editor is loading...