diff --git a/frontend/dodawanie turnieju/app.js b/frontend/dodawanie turnieju/app.js new file mode 100644 index 0000000..1a47f50 --- /dev/null +++ b/frontend/dodawanie turnieju/app.js @@ -0,0 +1,13 @@ +document.getElementById("tournamentSubmit").addEventListener("click", function () { + var xhttp = new XMLHttpRequest(); + xhttp.onreadystatechange = function () { + if (this.readyState == 4 && this.status == 200) { + alert("Dodano turniej"); + } else if (this.readyState == 4) { + alert("something not work :( " + this.status); + } + } + xhttp.open("PUT", "dragonmaster.pl/inz/tournament"); + xhttp.setRequestHeader("Authorization", "Bearer " + token); + xhttp.send('{"name":"' + document.getElementById("tournamentName").value + '","typeOfLadder":"' + document.getElementById("ladderType").value + '","pointsForTournament":"' + document.getElementById("tournamentPoints").value + '","places":"' + document.getElementById("tournamentPlace").value + '","roles":"' + document.getElementById("tournamentRole").value + '","ranked":"' + document.getElementById("isRanked").value + '"}'); +}); \ No newline at end of file diff --git a/frontend/logowanie/app.js b/frontend/logowanie/app.js new file mode 100644 index 0000000..142b61c --- /dev/null +++ b/frontend/logowanie/app.js @@ -0,0 +1,18 @@ +document.getElementById("loginsubmit").addEventListener("click", function () { + var xhttp = new XMLHttpRequest(); + xhttp.onreadystatechange = function () { + if (this.readyState == 4 && this.status == 200) { + alert("logged in"); + console.log("dziala"); + } else if (this.readyState == 4) { + alert("something not work :( " + this.status); + console.log("nie dziala"); + } + } + xhttp.open("POST", "https://dragonmaster.pl/inz/user/login"); + xhttp.send('{"username":"' + document.getElementById("loginusername").value + '","password":"' + document.getElementById("loginpassword").value + '"}'); +}); + +function submit() { + ("form").submit(function () { return false; }) +} \ No newline at end of file diff --git a/frontend/logowanie/index.html b/frontend/logowanie/index.html index 66a5347..deb650c 100644 --- a/frontend/logowanie/index.html +++ b/frontend/logowanie/index.html @@ -14,14 +14,16 @@