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.
52 lines
1.6 KiB
PHP
52 lines
1.6 KiB
PHP
<?php
|
|
|
|
$template = <<<END
|
|
<center>
|
|
<table style="width: 450px;"><tr>
|
|
<td width="50%">
|
|
<div class="big"><b>News</b></div>
|
|
<div style="border: solid 1px #aaaaaa; background-color: #eeeeee; padding: 5px; text-align: left;">
|
|
{{news}}<br /><br />
|
|
<a href="index.php?do=guildnews">Edit</a>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
{{babblebox}}
|
|
</td>
|
|
</tr><tr>
|
|
<td>
|
|
<div class="big"><b>Bank</b></div>
|
|
Your Guild has {{bank}} gold.<hr />
|
|
<form action="index.php?do=guildbank" method="post">
|
|
Send <input type="text" name="gold" size="5" maxlength="10" /> Gold to {{memberselect}} <input type="submit" name="out" value="Go" /><hr />
|
|
Deposit <input type="text" name="golddeposit" size="5" maxlength="10" /> Gold <input type="submit" name="in" value="Go" />
|
|
</form>
|
|
</td>
|
|
<td>
|
|
<div class="big"><b>Member Ranks</b></div>
|
|
Select a member to promote/demote.<br /><br />
|
|
<form action="index.php?do=guildpromote" method="post">
|
|
{{memberselect}}<br /><input type="submit" name="promote" value="Promote" /> <input type="submit" name="demote" value="Demote" />
|
|
</form>
|
|
</td>
|
|
</tr><tr>
|
|
<td>
|
|
<div class="big"><b>Applications</b></div>
|
|
Select a user to approve/deny.<br /><br />
|
|
<form action="index.php?do=guildapprove" method="post">
|
|
{{appselect}}
|
|
</form>
|
|
</td>
|
|
<td>
|
|
<div class="big"><b>More Guild Functions</b></div>
|
|
<ul>
|
|
<li /><a href="index.php?do=guildedit">Edit Settings</a>
|
|
<li /><a href="index.php?do=guildleave">Leave Guild</a>
|
|
<li /><a href="index.php?do=guilddisband">Disband Guild</a>
|
|
</ul>
|
|
</td>
|
|
</tr></table><br /><br />
|
|
You may also return to <a href="index.php">town</a> or the <a href="index.php?do=guilds&list=list">Guild List</a>.
|
|
END;
|
|
|
|
?>
|