Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $("#submit").click(function(){
- var resp = fetch("/api/login", {
- method: "POST",
- body: JSON.stringify({
- login: $("#login").val(),
- password: $("#password").val()
- })
- }).json()
- if(resp.status == "success"){
- window.location = "https://onlinemektep.org"
- }else{
- alert("error")
- }
- })
Advertisement
Add Comment
Please, Sign In to add comment