wootook-reloaded/templates/OpenGame/registry_form.tpl
Gregory PLANCHAT d7619777af Initial commit
2011-06-07 09:23:48 +02:00

52 lines
No EOL
1.6 KiB
Go Template

<center>
<br/><br/>
<h2><font size="+3">{registry}</font><br>{servername}</h2>
<form action="" method="post">
<table width="438">
<tbody>
<tr>
<td colspan="2" class="c"><b>{form}</b></td>
</tr><tr>
<th width="293">{GameName}</th>
<th width="293"><input name="character" size="20" maxlength="20" type="text" onKeypress="
if (event.keyCode==60 || event.keyCode==62) event.returnValue = false;
if (event.which==60 || event.which==62) return false;"></th>
</tr>
<tr>
<th>{neededpass}</th>
<th><input name="passwrd" size="20" maxlength="20" type="password" onKeypress="
if (event.keyCode==60 || event.keyCode==62) event.returnValue = false;
if (event.which==60 || event.which==62) return false;"></th>
</tr>
<tr>
<th>{E-Mail}</th>
<th><input name="email" size="20" maxlength="40" type="text" onKeypress="
if (event.keyCode==60 || event.keyCode==62) event.returnValue = false;
if (event.which==60 || event.which==62) return false;"></th>
</tr>
<tr>
<th>{MainPlanet}</th>
<th><input name="planet" size="20" maxlength="20" type="text" onKeypress="
if (event.keyCode==60 || event.keyCode==62) event.returnValue = false;
if (event.which==60 || event.which==62) return false;"></th>
</tr>
<tr>
<th>{Sex}</th>
<th><select name="sex">
<option value="">{Undefined}</option>
<option value="M">{Male}</option>
<option value="F">{Female}</option>
</select></th>
</tr>
<tr>
{code_secu}
<th>{affiche}</th>
</tr>
<tr>
<th><input name="rgt" type="checkbox">
{accept}</th>
<th><input name="submit" type="submit" value="{signup}"></th>
</tr>
</table>
</form>
</center>