e1b9948505
12.10.2005 - Build 12 (Eggs): - Members can now leave the Guild without requiring an officer to demote them to zero. - Rank 5 members can now edit/update Guild settings. - # of Members is now set to 1 when a Guild is created, and updated correctly when an application is approved. - The Guild founder is now notified via the Post Office when someone applies to join. - Members can now arbitrarily deposit money to the Guild bank. - You can no longer send guild money to yourself. Checks and balances, man! - Fixed image format selection so that it actually works. - Removed Language selection from account registration/settings.
85 lines
3.3 KiB
PHP
85 lines
3.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
MODIFYING THIS FILE IN ANY WAY WILL CAUSE THE GAME TO STOP FUNCTIONING.
|
|
In order to protect my intellectual property, certain security measures had to be taken.
|
|
As such, the primary template is locked. Any change to this file will result in the game
|
|
becoming nonfunctional. While I realize that there are valid reasons for wanting to change
|
|
the page structure, it is impossible to allow that without users also being able to remove
|
|
or change my copyright information. If you feel you absolutely must have access to change
|
|
this file at will, consider upgrading to the licensed commercial version of Dragon Scourge.
|
|
Thank you.
|
|
*/
|
|
|
|
$template = <<<END
|
|
<head>
|
|
<title>{{gamename}} :: {{pagetitle}}</title>
|
|
<style type="text/css">
|
|
|
|
/****** MAIN ELEMENTS ******/
|
|
body { font: 10px Verdana; background-image: url(images/{{background}}.jpg); padding: 0px; }
|
|
table { font: 10px Verdana; }
|
|
td { vertical-align: top; }
|
|
input { font: 10px Verdana; }
|
|
img { border-style: none; }
|
|
a { color: #996600; text-decoration: none; font-weight: bold; }
|
|
a:hover { color: #663300; }
|
|
|
|
/****** TYPOGRAPHY ******/
|
|
.grey { color: #999999; }
|
|
.red { color: #ff0000; }
|
|
.blue { color: #0000ff; }
|
|
.big { font: 11px Verdana; background-color: #dddddd; border: solid 1px #aaaaaa; padding: 2px; margin-bottom: 3px; }
|
|
.little { font: 10px Verdana; }
|
|
.babble1 { background-color: #eeeeee; font: 10px Verdana; margin: 0px; padding: 2px; }
|
|
.babble2 { background-color: #ffffff; font: 10px Verdana; margin: 0px; padding: 2px; }
|
|
</style>
|
|
</head>
|
|
<body><center>
|
|
|
|
<table width="750" height="380" cellspacing="0" cellpadding="0" style="border: solid 1px black; background-color: white;">
|
|
<tr>
|
|
<td width="750" height="60" colspan="3" style="border-bottom: solid 1px #cccccc; vertical-align: middle;">
|
|
<table width="750" height="60" cellspacing="0" cellpadding="0"><tr>
|
|
<td width="350"><img src="images/logo.gif" /></td>
|
|
<td width="400" style="vertical-align: middle; padding: 5px;">{{topnav}}</td>
|
|
</tr></table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="140" height="274" rowspan="2" style="border-right: solid 1px #cccccc;"><div style="padding: 3px;">
|
|
{{leftnav}}
|
|
</div></td>
|
|
<td width="450" height="174"><div style="padding: 3px;">
|
|
<div style="width: 444px; height: 168px; overflow: auto;">
|
|
<div class="big"><b>{{pagetitle}}</b></div>
|
|
{{content}}
|
|
</div>
|
|
</div></td>
|
|
<td width="160" height="274" rowspan="2" style="border-left: solid 1px #cccccc;"><div style="padding: 3px;">
|
|
{{rightnav}}
|
|
</div></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="450" height="106" style="border-top: solid 1px #cccccc;">{{middlenav}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="750" height="56" colspan="3" style="border-top: solid 1px #cccccc;">
|
|
<div style="height: 48px; padding: 3px;">
|
|
{{bottomnav}}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<table width="750" height="18" cellspacing="0" cellpadding="0" style="border: solid 1px black; background-color: white; margin-top: 3px;">
|
|
<tr>
|
|
<td width="50%" style="vertical-align: middle; padding-left: 5px;"><span class="little">Version <a href="index.php?do=version">{{version}}</a> / {{numqueries}} Queries / {{totaltime}} Seconds</span></td>
|
|
<td width="50%" style="vertical-align: middle; text-align: right; padding-right: 5px;"><span class="little"><a href="http://www.dragonscourge.com">Dragon Scourge</a> © 2003-2005 by <a href="http://www.renderse7en.com">renderse7en</a></span></td>
|
|
</tr>
|
|
</table>
|
|
|
|
</center></body>
|
|
</html>
|
|
END;
|
|
|
|
?>
|