php-gallery/password-reset.php

54 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>
<?php require_once __DIR__."/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
require_once __DIR__."/ui/required.php";
require_once __DIR__."/ui/nav.php";
2022-07-26 13:27:27 +00:00
2022-09-12 14:15:16 +00:00
use App\Account;
$user_info = new Account();
2022-08-15 10:56:05 +00:00
// Check if the user is logged in, otherwise redirect to login page
2022-09-12 14:15:16 +00:00
if ($user_info->is_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">
2022-09-17 10:28:29 +00:00
<input id="confirmPassword" class="btn btn-neutral" type="password" name="confirm_password" placeholder="Confirm Password">
2022-08-15 10:56:05 +00:00
<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();
2022-09-17 10:28:29 +00:00
var confirm_password = $("#confirmPassword").val();
2022-08-15 10:56:05 +00:00
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
<?php require_once __DIR__."/ui/footer.php"; ?>
2022-07-26 13:27:27 +00:00
</body>
2022-08-15 10:56:05 +00:00
</html>