php-gallery/account/password-reset.php

50 lines
1.4 KiB
PHP
Raw Normal View History

2022-07-26 13:27:27 +00:00
<!DOCTYPE html>
<html>
2022-08-15 10:56:05 +00:00
2022-07-26 13:27:27 +00:00
<head>
2022-09-06 16:14:43 +00:00
<?php include "../ui/header.php"; ?>
2022-07-26 13:27:27 +00:00
</head>
2022-08-15 10:56:05 +00:00
2022-09-06 16:14:43 +00:00
2022-07-26 13:27:27 +00:00
<body>
2022-08-15 10:56:05 +00:00
<?php
include "../ui/required.php";
include "../ui/nav.php";
2022-07-26 13:27:27 +00:00
2022-08-15 10:56:05 +00:00
// Check if the user is logged in, otherwise redirect to login page
if (!isset($_SESSION["loggedin"]) || $_SESSION["loggedin"] !== true) {
header("location: https://superdupersecteteuploadtest.fluffybean.gay/account/login.php");
exit;
}
?>
2022-07-26 13:27:27 +00:00
2022-08-15 10:56:05 +00:00
<div class="password-reset-root">
<h2>Reset Password</h2>
<p>After reset, you will be kicked out to login again</p>
<br>
<form id="passwordForm" method="POST" enctype="multipart/form-data">
<input id="newPassword" class="btn btn-neutral" type="password" name="new_password" placeholder="New Password">
<input id="confirmSassword" class="btn btn-neutral" type="password" name="confirm_password" placeholder="Confirm Password">
<br>
<button id="passwordSubmit" class="btn btn-bad" type="submit" name="reset"><img class="svg" src="../assets/icons/sign-in.svg">Reset</button>
</form>
</div>
2022-07-26 13:27:27 +00:00
2022-08-15 10:56:05 +00:00
<script>
$("#passwordForm").submit(function(event) {
event.preventDefault();
var new_passowrd = $("#newPassword").val();
var confirm_password = $("#confirmSassword").val();
var submit = $("#passwordSubmit").val();
$("#sniffle").load("../app/account/password_reset.php", {
new_passowrd: new_passowrd,
confirm_password: confirm_password,
submit: submit
});
});
</script>
2022-08-13 11:04:24 +00:00
2022-08-15 10:56:05 +00:00
<?php include "../ui/footer.php"; ?>
2022-07-26 13:27:27 +00:00
</body>
2022-08-15 10:56:05 +00:00
</html>