2022-09-21 13:37:45 +00:00
|
|
|
<?php require_once __DIR__."/app/required.php"; ?>
|
2022-09-21 13:02:38 +00:00
|
|
|
|
2022-07-26 17:16:17 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2022-08-15 10:56:05 +00:00
|
|
|
|
2022-07-26 17:16:17 +00:00
|
|
|
<head>
|
2022-09-21 13:37:45 +00:00
|
|
|
<?php require_once __DIR__."/assets/ui/header.php"; ?>
|
2022-07-26 17:16:17 +00:00
|
|
|
</head>
|
2022-08-15 10:56:05 +00:00
|
|
|
|
2022-07-26 17:16:17 +00:00
|
|
|
<body>
|
2022-09-21 13:37:45 +00:00
|
|
|
<?php require_once __DIR__."/assets/ui/nav.php"; ?>
|
2022-07-26 17:16:17 +00:00
|
|
|
|
2022-08-15 10:56:05 +00:00
|
|
|
<div class="about-root">
|
2022-09-20 15:47:23 +00:00
|
|
|
<h1><?php echo $user_settings['website_name']; ?></h1>
|
|
|
|
<p><?php echo $user_settings['website_description']; ?></p>
|
|
|
|
<p>Version <?php echo $user_settings['version']; ?></p>
|
|
|
|
|
2022-08-15 10:56:05 +00:00
|
|
|
<br>
|
2022-08-12 16:54:35 +00:00
|
|
|
|
2022-09-20 15:47:23 +00:00
|
|
|
<h2>TOS</h2>
|
|
|
|
<p><?php echo $user_settings['tos']; ?></p>
|
|
|
|
<p>This project is protected under the <?php echo $user_settings['license']; ?> license by <?php echo $user_settings['user_name']; ?></p>
|
|
|
|
|
2022-08-15 10:56:05 +00:00
|
|
|
<br>
|
2022-08-12 16:54:35 +00:00
|
|
|
|
2022-09-20 15:47:23 +00:00
|
|
|
<h2>Credits to development</h2>
|
|
|
|
<p>Carty: Kickstarting development and SQL/PHP development</p>
|
|
|
|
<p>Jeetix: Helping patch holes in some features</p>
|
|
|
|
<p>mrHDash, Verg, Fennec, Carty, Jeetix and everyone else for helping with early bug testing</p>
|
|
|
|
<p><a class='link' href="https://phosphoricons.com/">Phosphor</a> for providing nice SVG icons</p>
|
2022-07-26 17:16:17 +00:00
|
|
|
|
2022-08-15 10:56:05 +00:00
|
|
|
<br>
|
2022-08-12 16:54:35 +00:00
|
|
|
|
2022-09-20 15:47:23 +00:00
|
|
|
<h2>Development</h2>
|
2022-09-21 14:23:17 +00:00
|
|
|
<p>This projects GitHub: <a href="https://github.com/Fluffy-Bean/image-gallery" class="link">Repo</a></p>
|
|
|
|
<p>My Twitter: <a href="https://twitter.com/fluffybeanUwU" class="link">Twitter</a></p>
|
2022-08-15 10:56:05 +00:00
|
|
|
</div>
|
2022-07-26 17:16:17 +00:00
|
|
|
|
2022-09-21 13:37:45 +00:00
|
|
|
<?php require_once __DIR__."/assets/ui/footer.php"; ?>
|
2022-07-26 17:16:17 +00:00
|
|
|
</body>
|
2022-08-15 10:56:05 +00:00
|
|
|
|
|
|
|
</html>
|