84 lines
3.2 KiB
PHP
84 lines
3.2 KiB
PHP
<? /*
|
|
Copyright (C) 2004-2005 by Duane Groth <duane_at_CAcert_dot_org>
|
|
|
|
This file is part of CAcert.
|
|
|
|
CAcert has been released under a CAcert Source license
|
|
which can be found included with these source files or can
|
|
be downloaded from the internet from the following address:
|
|
http://www.cacert.org/src-lic.php
|
|
|
|
CAcert is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
PARTICULAR PURPOSE. See the License for more details.
|
|
*/
|
|
|
|
if(!function_exists("showheader"))
|
|
{
|
|
function showheader($title = "CAcert.org", $title2 = "")
|
|
{
|
|
global $id;
|
|
|
|
?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<title><?=$title?></title>
|
|
<? if($_SESSION['_config']['header'] != "") { ?><?=$_SESSION['_config']['header']?><? } ?>
|
|
<link rel="stylesheet" href="/styles/default.css" type="text/css">
|
|
<link href="http://my.rsscache.com/www.cacert.org/rss.php" rel="alternate" type="application/rss+xml" title="rss">
|
|
</head>
|
|
<body>
|
|
<div id="pagecell1">
|
|
<div id="pageName"><br>
|
|
<h2><a href="http://<?=$_SESSION['_config']['normalhostname']?>"><img src="https://www.CAcert.org/images/cacert3.png" border="0" alt="CAcert.org logo"></a></h2>
|
|
<div id="googlead"><h2><?=_("Free digital certificates!")?></h2></div>
|
|
</div>
|
|
<div id="pageNav">
|
|
<div class="relatedLinks">
|
|
<h3><?=_("Join CAcert.org")?></h3>
|
|
<a href="http://<?=$_SESSION['_config']['normalhostname']?>/"><?=_("Main Website")?></a>
|
|
<a href="https://<?=$_SESSION['_config']['normalhostname']?>/index.php?id=1"><?=_("Join")?></a>
|
|
</div>
|
|
<div class="relatedLinks">
|
|
<h3><?=_("My Account")?></h3>
|
|
<a href="https://<?=$_SESSION['_config']['normalhostname']?>/index.php?id=4"><?=_("Normal Login")?></a>
|
|
<a href="https://<?=$_SESSION['_config']['securehostname']?>/index.php?id=4"><?=_("Cert Login")?></a>
|
|
<a href="https://<?=$_SESSION['_config']['normalhostname']?>/index.php?id=5"><?=_("Lost Password")?></a>
|
|
</div>
|
|
</div>
|
|
<div id="content">
|
|
<div class="story">
|
|
<h3><?=$title2?></h3>
|
|
<? if($_SESSION['_config']['errmsg'] != "") { ?>
|
|
<p><? echo $_SESSION['_config']['errmsg']; $_SESSION['_config']['errmsg'] = ""; ?> </p>
|
|
<? } ?>
|
|
<?
|
|
}
|
|
}
|
|
|
|
if(!function_exists("showfooter"))
|
|
{
|
|
function showfooter()
|
|
{
|
|
?>
|
|
</div>
|
|
</div>
|
|
<div id="siteInfo">
|
|
<? if(!$_SERVER["HTTPS"]) { ?><!--ONESTAT SCRIPTCODE START-->
|
|
<script type="text/javascript" src="onestat.js"></script>
|
|
<noscript>
|
|
<a href="http://www.onestat.com/asp/login.asp?sid=164863">
|
|
<img src="http://stat.onestat.com/asp/stat.asp?tagver=1&sid=164863&js=no&" alt="this site tracked by onestat.com" />
|
|
</a>
|
|
</noscript>
|
|
<!--ONESTAT SCRIPTCODE END--><? } ?>
|
|
<a href="index.php?id=12"><?=_("About Us")?></a> | <a href="index.php?id=13"><?=_("Donations")?></a> |
|
|
<a href="index.php?id=10"><?=_("Privacy Policy")?></a> |
|
|
<a href="index.php?id=51"><?=_("Mission Statement")?></a> | <a href="index.php?id=11"><?=_("Contact Us")?></a> |
|
|
<a href="index.php?id=19"><?=_("Further Information")?></a> | ©2002-2005 by CAcert</div>
|
|
</div>
|
|
</body>
|
|
</html><?
|
|
}
|
|
}
|
|
?>
|