php-gallery/about.php

44 lines
1.2 KiB
PHP
Raw Normal View History

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>
<?php require_once __DIR__."/ui/header.php"; ?>
2022-07-26 17:16:17 +00:00
</head>
2022-08-15 10:56:05 +00:00
2022-09-06 16:14:43 +00:00
2022-07-26 17:16:17 +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-08-15 10:56:05 +00:00
?>
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>
<a href="https://github.com/Fluffy-Bean/image-gallery" class="link">Project Github</a>
<a href="https://twitter.com/fluffybeanUwU" class="link">Creators Twitter</a>
2022-08-15 10:56:05 +00:00
</div>
2022-07-26 17:16:17 +00:00
<?php require_once __DIR__."/ui/footer.php"; ?>
2022-07-26 17:16:17 +00:00
</body>
2022-08-15 10:56:05 +00:00
</html>