Dragon-Scourge/templates/guild_edit.php
Jamin Blount e1b9948505 Beta 2 Build 12
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.
2017-02-05 11:51:02 -06:00

22 lines
2.5 KiB
PHP

<?php
$template = <<<END
<form action="index.php?do=guildedit" method="post">
<table>
<tr><td width="30%">Name:</td><td>{{name}}<br /><br /><br /></td></tr>
<tr><td width="30%">Tagline:</td><td>{{tagline}}<br /><br /><br /></td></tr>
<tr><td width="30%">Name Color:</td><td><input type="text" name="color2" size="10" maxlength="7" value="{{color2}}" /><br />HTML color code used to display the name of your Guild, and the names of each member.<br />(<a href="http://hotwired.lycos.com/webmonkey/reference/color_codes/" target="_new">Click here</a> for a list of color codes.)<br /><br /><br /></td></tr>
<tr><td width="30%">Tagline Color:</td><td><input type="text" name="color1" size="10" maxlength="7" value="{{color1}}" /><br />HTML color code used to display your Guild's tagline.<br />(<a href="http://hotwired.lycos.com/webmonkey/reference/color_codes/" target="_new">Click here</a> for a list of color codes.)<br /><br /><br /></td></tr>
<tr><td width="30%">Cost to Join:</td><td><input type="text" name="joincost" size="10" maxlength="7" value="{{joincost}}" /><br />How much gold it will cost for a member to join your guild.<br /><br /><br /></td></tr>
<tr><td width="30%">Rank 1 Title:</td><td><input type="text" name="rank1" size="30" maxlength="30" value="{{rank1}}" /><br />Lowest ranking Guild member's title. <br /><br /><br /></td></tr>
<tr><td width="30%">Rank 2 Title:</td><td><input type="text" name="rank2" size="30" maxlength="30" value="{{rank2}}" /><br />2nd ranking Guild member's title.<br /><br /><br /></td></tr>
<tr><td width="30%">Rank 3 Title:</td><td><input type="text" name="rank3" size="30" maxlength="30" value="{{rank3}}" /><br />3rd ranking Guild member's title.<br /><br /><br /></td></tr>
<tr><td width="30%">Rank 4 Title:</td><td><input type="text" name="rank4" size="30" maxlength="30" value="{{rank4}}" /><br />4th ranking Guild member's title. These are sub-leaders for your Guild.<br /><br /><br /></td></tr>
<tr><td width="30%">Rank 5 Title:</td><td><input type="text" name="rank5" size="30" maxlength="30" value="{{rank5}}" /><br />Highest ranking Guild member's title. This will be your title, as well as any other member you promote to this rank.<br /><br /><br /></td></tr>
<tr><td width="30%">Opening Statement</td><td><textarea name="statement" rows="5" cols="30">{{statement}}</textarea><br />Your Guild's introduction statement or creed.</td></tr>
<tr><td colspan="2"><input type="submit" name="submit" value="Submit" /> <input type="reset" name="reset" value="Reset" /></td></tr>
</table>
</form>
END;
?>