27 lines
517 B
PHP
Raw Normal View History

2016-10-09 18:47:49 +02:00
<?php require '../config.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
2016-10-22 16:39:08 +02:00
<?php require '../include/head.php'; ?>
2016-10-09 18:47:49 +02:00
</head>
<body>
2016-11-15 19:39:11 +01:00
<?php require '../include/navbar.php'; ?>
2016-10-09 18:47:49 +02:00
<div class="container">
<div class="row">
<div class="col-md-12">
2017-04-19 19:48:44 +02:00
<style>
/* prevent hhvm phpinfo() from shrinking the width */
body {width: 100% !important;}
</style>
2016-10-09 18:47:49 +02:00
<?php phpinfo(); ?>
</div>
</div>
</div><!-- /.container -->
<?php require '../include/footer.php'; ?>
2016-10-09 18:47:49 +02:00
</body>
</html>