48 lines
993 B
PHP
48 lines
993 B
PHP
|
<?php
|
||
|
echo file_get_contents("html/header.html");
|
||
|
|
||
|
$ini_arr = parse_ini_file( "cacert.ini", true );
|
||
|
|
||
|
?>
|
||
|
|
||
|
|
||
|
<div class="navDiv" >
|
||
|
<ul>
|
||
|
<li>
|
||
|
<a href="info.php" title="Info">Info</a>
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="register.php" title="Register A New Site">Register a New Site</a>
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="list.php" title="List Registered Sites">List Registered Sites</a>
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="delete.php" title="Delete A Registration">Delete A Registration</a>
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="about.php" title="About">About This Site</a>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
|
||
|
<br>
|
||
|
<br>
|
||
|
|
||
|
<div >
|
||
|
<?php
|
||
|
|
||
|
echo '<div style="position: fixed; width:auto; color: black; vertical-align: bottom; background: lightgrey ; padding: 1em; vertical-align: bottom" >';
|
||
|
echo file_get_contents("html/footer.html");
|
||
|
|
||
|
echo "<p>Copyright © CAcert, Inc ";
|
||
|
echo date("Y");
|
||
|
echo "</div>";
|
||
|
|
||
|
?>
|
||
|
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|
||
|
|