devilbox/.devilbox/www/htdocs/credits.php
2016-10-22 17:38:21 +02:00

56 lines
1.1 KiB
PHP

<?php require '../config.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php require '../include/head.php'; ?>
</head>
<body>
<?php require '../include/navigation.php'; ?>
<div class="container">
<h1>Credits</h1>
<div class="row">
<div class="col-md-12">
<table class="table table-striped ">
<thead class="thead-inverse ">
<tr>
<th>Vendor</th>
<th>License</th>
<th>Url</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bootstrap</td>
<td>MIT</td>
<td><a href="https://github.com/twbs/bootstrap">https://github.com/twbs/bootstrap</a></td>
</tr>
<tr>
<td>Opcache GUI</td>
<td>MIT</td>
<td><a href="https://github.com/amnuts/opcache-gui">https://github.com/amnuts/opcache-gui</a></td>
</tr>
<tr>
<td>phpMyAdmin</td>
<td>GPL 2.0</td>
<td><a href="https://github.com/phpmyadmin/phpmyadmin">https://github.com/phpmyadmin/phpmyadmin</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div><!-- /.container -->
<?php require '../include/footer.php'; ?>
</body>
</html>