1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
#include header.html
#include menu.html
<table align="center" border="0">
<tr>
<td align="center">Current Top Ranks</td>
</tr>
<tr>
<td align="center">
[[RANKS]]
</td>
</tr>
<tr align=center><td>
<form method="post">
Find players :
<input type="text" name="find">
<input type="submit" name="action" value="Find">
</form>
</td></tr>
<tr align=center><td>
<form method="post">
Combine players.
Updated Player:<input type="text" name="player1">
Removed Player:<input type="text" name="player2">
<input type="submit" name="action" value="Combine">
</form>
</td></tr>
</table>
#include footer.html
|