mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2024-12-26 17:36:09 +00:00
56 lines
1.6 KiB
PHP
56 lines
1.6 KiB
PHP
<?php require_once __DIR__."/app/required.php"; ?>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<?php require_once __DIR__."/assets/ui/header.php"; ?>
|
|
</head>
|
|
|
|
<body>
|
|
<?php
|
|
require_once __DIR__."/assets/ui/nav.php";
|
|
|
|
use App\Account;
|
|
|
|
$user_info = new Account();
|
|
|
|
// Check if the user is logged in, otherwise redirect to login page
|
|
if ($user_info->is_loggedin() != true) {
|
|
header("location: account.php");
|
|
exit;
|
|
}
|
|
?>
|
|
|
|
<div class="warningDecoration defaultSpacing defaultFonts">
|
|
<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="confirmPassword" 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>
|
|
<br>
|
|
<a href="account.php" class="btn btn-neutral" ><img class="svg" src="assets/icons/sign-in.svg">Cancel</a>
|
|
</div>
|
|
|
|
<script>
|
|
$("#passwordForm").submit(function(event) {
|
|
event.preventDefault();
|
|
var new_password = $("#newPassword").val();
|
|
var confirm_password = $("#confirmPassword").val();
|
|
var submit = $("#passwordSubmit").val();
|
|
$("#newSniff").load("app/account/account.php", {
|
|
new_password: new_password,
|
|
confirm_password: confirm_password,
|
|
password_reset_submit: submit
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<?php require_once __DIR__."/assets/ui/footer.php"; ?>
|
|
</body>
|
|
|
|
</html>
|