diff --git a/admin/index.html b/admin/index.html index 03311ae..0e9e511 100644 --- a/admin/index.html +++ b/admin/index.html @@ -3,9 +3,163 @@ - - + + Content dispenser admin diff --git a/admin/script.js b/admin/script.js deleted file mode 100644 index 7af2f3c..0000000 --- a/admin/script.js +++ /dev/null @@ -1,151 +0,0 @@ -let password = ""; -let datatable = {}; -let content = ""; - -function justadd(){ - let id = $("#addid").val(); - let contentid = $("#addcontentid").val(); - let nickname = $("#addnickname").val(); - $.post("api.php", - { - action: "set", - password: password, - id: id, - contentid: contentid, - nickname: nickname, - }, function( data ) { - getlinks(); - }); -} - -function justaddc(){ - let id = $("#addidc").val(); - let content = $("#addcontentc").val(); - $.post("api.php", - { - action: "setcontent", - password: password, - id: id, - content: content, - }, function( data ) { - getcontents(); - }); -} - -function delcthis(name){ - $.post("api.php", - { - action: "deletecontent", - password: password, - id: name - }, function( data ) { - getcontents(); - }); -} - -function getcontents(){ - $.post("api.php", - { - action: "getcontent", - password: password - }, function( data ) { - $("#contentlist").html(data); - - $("#addcontentc").keyup(function(event) { - if (event.keyCode === 13) { - $("#contentadder").click(); - $("#addidc").focus(); - } - }); - $("#addidc").keyup(function(event) { - if (event.keyCode === 13) { - $("#addcontentc").focus(); - } - }); - - }); -} - - -function delthis(name){ - $.post("api.php", - { - action: "delete", - password: password, - id: name - }, function( data ) { - getlinks(); - }); -} - -function verifyPassword(){ - password = $("#pwdbox").val(); - $.post("api.php", - { - action: "verify", - password: password - }, function( data ) { - if (data == "OK"){ - getlinks(); - getcontents(); - $("#pwdentry").fadeOut("slow", function(){ - $("#indexmanagement").fadeIn("slow", function(){ - }); - }); - } - }); -} - -function getlinks(){ - $.post("api.php", - { - action: "get", - password: password - }, function( data ) { - $("#linkslist").html(data); - $("#addnickname").keyup(function(event) { - if (event.keyCode === 13) { - $("#linkadder").click(); - $("#addid").focus(); - } - }); - - $("#addid").keyup(function(event) { - if (event.keyCode === 13) { - $("#addcontentid").focus(); - } - }); - - $("#addcontentid").keyup(function(event) { - if (event.keyCode === 13) { - $("#addnickname").focus(); - } - }); - }); -} - -function getlog(){ - let id = $("#logid").val(); - $.post("api.php", - { - action: "getlog", - password: password, - id: id - }, function( data ) { - $("#loglist").html(data); - }); -} - -$(function() { - - $("#submitpwd").click(verifyPassword); - $("#logget").click(getlog); - - - $("#logid").keyup(function(event) { - if (event.keyCode === 13) { - $("#logget").click(); - } - }); - -}); \ No newline at end of file diff --git a/admin/style.css b/admin/style.css deleted file mode 100644 index 75af7f6..0000000 --- a/admin/style.css +++ /dev/null @@ -1,3 +0,0 @@ -#indexmanagement{ - display: none; -} \ No newline at end of file