diff --git a/account.php b/account.php index 525e3df..8e7337f 100644 --- a/account.php +++ b/account.php @@ -163,8 +163,102 @@ + - + $("#passwordForm").submit(function(event) { event.preventDefault(); - var new_passowrd = $("#newPassword").val(); + var new_password = $("#newPassword").val(); var confirm_password = $("#confirmPassword").val(); var submit = $("#passwordSubmit").val(); $("#sniffle").load("app/account/password_reset.php", { - new_passowrd: new_passowrd, + new_password: new_password, confirm_password: confirm_password, submit: submit }); diff --git a/scripts/account.js b/scripts/account.js deleted file mode 100644 index 5846c29..0000000 --- a/scripts/account.js +++ /dev/null @@ -1,92 +0,0 @@ -function userResetPassword(id, username) { - var header = "UwU whats the new passywassy code?"; - var description = "Do this only if "+username+" has forgotten their password, DO NOT abuse this power"; - var actionBox = "
\ - \ - \ -
\ - \ -
"; - - flyoutShow(header, description, actionBox); - - $("#userResetPasswordForm").submit(function(event) { - event.preventDefault(); - var new_passowrd = $("#userNewPassword").val(); - var confirm_password = $("#userConfirmSassword").val(); - var submit = $("#userPasswordSubmit").val(); - var userId = $("#userPasswordSubmit").val(); - $("#sniffle").load("app/account/password_reset.php", { - new_passowrd: new_passowrd, - confirm_password: confirm_password, - id: userId, - submit: submit - }); - }); -} -function userDelete(id, username) { - var header = "Are you very very sure?"; - var description = "This CANNOT be undone, be very carefull with your decition..."; - var actionBox = "
\ - \ -
\ -
\ - \ -
"; - - flyoutShow(header, description, actionBox); - - /*$("#descriptionConfirm").submit(function(event) { - event.preventDefault(); - var descriptionInput = $("#descriptionInput").val(); - var userDeleteSubmit = $("#userDeleteSubmit").val(); - $("#sniffle").load("path/to/.php", { - id: id, - submit_delete: userDeleteSubmit - }); - });*/ - /*$("#descriptionConfirm").submit(function(event) { - event.preventDefault(); - var descriptionInput = $("#descriptionInput").val(); - var userDeleteSubmit = $("#userDeleteSubmit").val(); - $("#sniffle").load("path/to/.php", { - id: id, - submit_delete: userDeleteSubmit - }); - });*/ -} -function userToggleAdmin(id, username) { - var header = "With great power comes great responsibility..."; - var description = "Do you trust this user? With admin permitions they can cause a whole lot of damage to this place, so make sure you're very very sure"; - var actionBox = "
\ - \ -
"; - - flyoutShow(header, description, actionBox); - - $("#toggleAdminConfirm").submit(function(event) { - event.preventDefault(); - var toggleAdminSubmit = $("#toggleAdminSubmit").val(); - $("#sniffle").load("app/account/account.php", { - id: toggleAdminSubmit, - toggle_admin: toggleAdminSubmit - }); - }); -} - -function openTab(evt, tabName) { - var i, tabcontent, tablinks; - - tabcontent = document.getElementsByClassName("tabcontent"); - for (i = 0; i < tabcontent.length; i++) { - tabcontent[i].style.display = "none"; - } - - tablinks = document.getElementsByClassName("tablinks"); - for (i = 0; i < tablinks.length; i++) { - tablinks[i].className = tablinks[i].className.replace(" active-tab", ""); - } - - document.getElementById(tabName).style.display = "flex"; - evt.currentTarget.className += " active-tab"; -} \ No newline at end of file