Dragon-Scourge/templates/users_charnew.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

17 lines
1.3 KiB
PHP

<?php
$template = <<<END
<form action="users.php?do=charnew" method="post" enctype="multipart/form-data">
<table>
<tr><td width="30%">Character Name:</td><td><input type="text" name="charname" size="30" maxlength="30" /><br />Character names must be 30 characters or less.<br /><br /><br /></td></tr>
<tr><td width="30%">Avatar:</td><td>Upload an avatar:<br /><input type="file" name="intavatar" /><br />Avatars must be 50x50 pixels & {{maxsize}}kb or smaller.<br />JPG, GIF, and PNG file types only.<br /><br /><br /></td></tr>
<tr><td width="30%">Character Class:</td><td><select name="charclass">{{charclass}}</select></td></tr>
<tr><td width="30%">Difficulty:</td><td><select name="difficulty">{{difficulty}}</select></td></tr>
<tr><td width="30%">Default Character:</td><td><input type="checkbox" name="setdefault" value="yes" checked="checked" {{defaultenabled}} style="vertical-align: middle;" /> Yes.<br />Place a check in the box if you want your new character to become the current default for your account.<br /><br /></td></tr>
<tr><td colspan="2"><input type="submit" name="submit" value="Submit" /> <input type="reset" name="reset" value="Reset" /></td></tr>
</table>
</form>
You may also continue playing <a href="index.php">the game</a> or return to the main <a href="users.php?do=characters">Characters</a> screen.
END;
?>