mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2024-12-28 18:36:22 +00:00
70 lines
2.3 KiB
PHP
70 lines
2.3 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Lynx Gallery</title>
|
|
|
|
<!-- Stylesheets -->
|
|
<link rel="stylesheet" href="../css/main.css">
|
|
<link rel="stylesheet" href="../css/normalise.css">
|
|
|
|
<!-- Google Fonts -->
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@600">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Secular+One&display=swap">
|
|
|
|
<!-- JQuery -->
|
|
<script
|
|
src="https://code.jquery.com/jquery-3.6.0.min.js"
|
|
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
|
|
crossorigin="anonymous">
|
|
</script>
|
|
|
|
<!-- Sniffle script! -->
|
|
<script src="../Sniffle/sniffle.js"></script>
|
|
<link rel='stylesheet' href='../Sniffle/sniffle.css'>
|
|
|
|
<!-- Flyout script! -->
|
|
<script src="../Flyout/flyout.js"></script>
|
|
<link rel='stylesheet' href='../Flyout/flyout.css'>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
include "../ui/required.php";
|
|
include "../ui/nav.php";
|
|
?>
|
|
|
|
<div class="account-root">
|
|
<h2>Account settings</h2>
|
|
<?php
|
|
if (isset($_SESSION["loggedin"]) && $_SESSION["loggedin"] === true) {
|
|
echo "<br>";
|
|
if ($_SESSION["id"] == 1) {
|
|
echo "<h3>Invite Codes</h3>";
|
|
$token_request = mysqli_query($conn, "SELECT * FROM tokens WHERE used = 0");
|
|
while ($token = mysqli_fetch_array($token_request)) {
|
|
echo "<p>".$token['code']."</p>";
|
|
}
|
|
}
|
|
?>
|
|
<br>
|
|
<h3 class='space-top'>Danger ahead</h3>
|
|
<p>Resetting your password regularly is a good way of keeping your account safe</p>
|
|
<a class='btn btn-bad' href='https://superdupersecteteuploadtest.fluffybean.gay/account/password-reset.php'><img class='svg' src='../assets/icons/password.svg'>Reset Password</a>
|
|
<br>
|
|
<p>Don't leave! I'm with the science team!</p>
|
|
<a class='btn btn-bad' href='https://superdupersecteteuploadtest.fluffybean.gay/account/logout.php'><img class='svg' src='../assets/icons/sign-out.svg'>Logout</a>
|
|
<?php
|
|
} else {
|
|
?>
|
|
<p>You must be logged in to change your account settings!</p>
|
|
<a class='btn btn-good' href='https://superdupersecteteuploadtest.fluffybean.gay/account/login.php'>Login!</a>
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
<?php include "../ui/footer.php"; ?>
|
|
</body>
|
|
</html>
|