21 lines
538 B
PHP
21 lines
538 B
PHP
<?php
|
|
include_once(dirname($_SERVER["DOCUMENT_ROOT"]) . "/include.php");
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Platinus</title>
|
|
<?php include_once(dirname($_SERVER["DOCUMENT_ROOT"]) . "/header.php");?>
|
|
</head>
|
|
<body>
|
|
<?php include_once(dirname($_SERVER["DOCUMENT_ROOT"]) . "/navbar.php");?>
|
|
<div class="main">
|
|
<section class="section">
|
|
<div class="container">
|
|
<text>This page was intentionally left blank</text>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<?php include_once(dirname($_SERVER["DOCUMENT_ROOT"]) . "/footer.php");?>
|
|
</body>
|
|
</html>
|