myaac/system/templates/guilds.create_guild.html.twig
slawkens 04a7796665 * moved some guild pages and account to twig
* fixed account create javascript warnings when fields are empty
2017-10-05 17:07:49 +02:00

57 lines
1.9 KiB
Twig

<form action="?subtopic=guilds&action=createguild&todo=save" method="post">
<table width="100%" border="0" cellspacing="1" cellpadding="4">
<tr>
<td bgcolor="{{ config.vdarkborder }}" class="white"><B>Create a {{ config.lua.serverName }} Guild</b></td>
</tr>
<tr>
<td bgcolor="{{ config.darkborder }}">
<table border="0" cellspacing="8" cellpadding="0">
<tr>
<td>
<table border="0" cellspacing="5" cellpadding="0">
<tr>
<td width="150" valign="top">
<b>Leader: </b>
</td>
<td>
<select name="name">
{% for player in players %}
<option>{{ player }}</option>
{% endfor %}
</select><br/>
<font size="1" face="verdana,arial,helvetica">(Name of leader of new guild.)</font>
</td>
</tr>
<tr>
<td width="150" valign="top"><b>Guild name: </b></td>
<td>
<input name="guild" value="" size="30" maxlength="50"/><br/>
<font size="1" face="verdana,arial,helvetica">(Here write name of your new guild.)</font></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br/>
<table border=0 width=100%>
<tr>
<td align="center">
<img src="{{ template_path }}/images/general/blank.gif" width=120 height=1 border=0><br/>
</td>
<td align="center" valign="top">
<input type=image name="Submit" src="{{ template_path }}/images/buttons/sbutton_submit.gif" border="0" width="120" height="18"/>
</form>
</td>
<td align="center">
<form action="?subtopic=guilds" method="post">
<input type="image" name="Back" alt="Back" src="{{ template_path }}/images/buttons/sbutton_back.gif" border="0" width="120" height="18"/>
</form>
</td>
<td align="center">
<img src="{{ template_path }}/images/general/blank.gif" width="120" height="1" border="0"><br>
</td>
</tr>
</table>