Skip to content
xflyhack edited this page Jun 1, 2016 · 1 revision

$("#frmLogin").submit(function(e){ e.preventDefault(); $.post('auth/token', $("#frmLogin").serialize(), function(data){ store.setJwt(data.jwt); store.exportValues(); }).fail(function(){ alert('error'); }); });

where is auth/token? token.php where??

Clone this wiki locally