php-gallery/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-07 09:41:18 +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
2022-09-07 09:41:18 +00:00
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) {
2022-09-07 09:41:18 +00:00
header("location: account.php");
2022-08-15 10:56:05 +00:00
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>
2022-09-07 09:41:18 +00:00
<button id="passwordSubmit" class="btn btn-bad" type="submit" name="reset"><img class="svg" src="assets/icons/sign-in.svg">Reset</button>
2022-08-15 10:56:05 +00:00
</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();
2022-09-07 09:41:18 +00:00
$("#sniffle").load("app/account/password_reset.php", {
2022-08-15 10:56:05 +00:00
new_passowrd: new_passowrd,
confirm_password: confirm_password,
submit: submit
});
});
</script>
2022-08-13 11:04:24 +00:00
2022-09-07 09:41:18 +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>