1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-19 23:21:47 +02:00
polr/about.php
2014-11-20 16:51:12 -05:00

43 lines
1.8 KiB
PHP

<?php
@(include('config.php')) or header('Location:setup.php');
require_once 'headerpage.php';
require_once('version.php');
?>
<?php
require_once('req.php');
if ($_SESSION['role']=="adm") {
echo "
<h1>About Polr</h1>
<br>
<dl>Build Information
<dt>Version: $version
<dt>Release date: $reldate
<dt>App Build : $wsn by $wsa on $wsb <dt>
</dl>You are seeing this message because you are logged in as an Administrator.<br />";
}
?>
<br><p><?php echo $wsn;?> is powered by Polr, an open source, minimalist link shortening platform. Learn more at <a href='https://github.com/Cydrobolt/polr'>our Github page</a>, our <a href="//project.polr.me">project site</a>, <a href="//polr.me/about">or our own about page</a>.
<br>Polr is licensed under the GNU GPL License.</p>
<div style="font-size: 70%; padding-top: 40px">
The GNU General Public License v3
<br>
Copyright (C) 2014 Chaoyi Zha, the Polr Project
<br />
This program is free software: you can redistribute it and/or modify<br />
it under the terms of the GNU General Public License as published by<br />
the Free Software Foundation, either version 3 of the License, or<br />
(at your option) any later version.<br />
<br />
This program is distributed in the hope that it will be useful,<br />
but WITHOUT ANY WARRANTY; without even the implied warranty of<br />
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br />
GNU General Public License for more details.<br />
<br />
You should have received a copy of the GNU General Public License<br />
along with this program. If not, see <a href='http://www.gnu.org/copyleft/gpl.html'>http://www.gnu.org/copyleft/gpl.html</a>.
</div>
<?php
require_once 'footerpage.php';
?>