2006-12-02 04:36:16 +00:00
|
|
|
<?php
|
|
|
|
/*
|
2013-03-21 12:56:55 +01:00
|
|
|
* e107 website system
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008-2013 e107 Inc (e107.org)
|
|
|
|
* Released under the terms and conditions of the
|
|
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
|
|
*
|
|
|
|
* Credits
|
|
|
|
*
|
2012-11-26 18:42:11 -08:00
|
|
|
*/
|
2006-12-02 04:36:16 +00:00
|
|
|
|
2021-01-16 13:32:35 -08:00
|
|
|
require_once(__DIR__."/../class2.php");
|
2009-08-28 16:11:02 +00:00
|
|
|
|
2012-11-26 18:42:11 -08:00
|
|
|
$css = "body { text-align: left; font-size:13px; line-height:1.5em; font-weight:normal; font-family:Arial, Helvetica, sans-serif; }
|
|
|
|
p { margin:0px 5px 10px 5px; }
|
2013-03-21 18:25:27 -07:00
|
|
|
|
2012-11-26 18:42:11 -08:00
|
|
|
a { color:#F6931E; text-decoration:none; }
|
2021-11-23 09:27:42 -08:00
|
|
|
a:hover { color:#fdce8a; text-decoration:none; }
|
2012-11-26 18:42:11 -08:00
|
|
|
.bold { font-weight:bold; }
|
|
|
|
.center { text-align:center; }
|
2013-03-21 18:25:27 -07:00
|
|
|
.wrapper { width:600px; margin:0px auto 0px 0px; padding-bottom:10px; }
|
|
|
|
.wrapper-middle { min-height:389px; }
|
|
|
|
.wrapper-text { }
|
|
|
|
.logo { margin-bottom:20px }
|
|
|
|
.credits-content { padding:20px 40px;}
|
|
|
|
.copyright { margin-top:30px}
|
2012-11-26 18:42:11 -08:00
|
|
|
";
|
|
|
|
|
|
|
|
e107::css('inline',$css);
|
|
|
|
|
|
|
|
|
|
|
|
require_once(e_ADMIN."auth.php");
|
|
|
|
|
2021-11-23 09:27:42 -08:00
|
|
|
require_once(__DIR__."/../credits.php");
|
2012-11-26 18:42:11 -08:00
|
|
|
|
|
|
|
require_once(e_ADMIN."footer.php");
|