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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#include header.html
#include menu.html
<form method="post">
<table align="center" border="0">
<tr>
<td align="center">Players</td>
</tr>
<tr>
<td>
<input type="hidden" name="sid" value="[[sid]]">
<table border="1" width="760">
<tr class=heading>
<td>Id</td>
<td>Name</td>
<td>Type</td>
<td>Time</td>
<td>Score</td>
<td>State</td>
<td>Team</td>
<td>Select</td>
</tr>
[[PLAYERS]]
</table>
Players : [[NOPLAYERS]]
</td>
</tr>
<tr>
<td align="center">
<br>
Selected Player Actions<br>
<input type="submit" name="action" value="Kick">
<input type="submit" name="action" value="Banned">
<input type="submit" name="action" value="Slap">
<input type="submit" name="action" value="Poor">
<input type="submit" name="action" value="Flag">
<br>
<input type="submit" name="action" value="Mute">
<input type="submit" name="action" value="UnMute">
<input type="submit" name="action" value="PermMute">
<input type="submit" name="action" value="UnPermMute">
<br>
<input type="submit" name="action" value="ShowAliases">
<input type="submit" name="action" value="ShowIPAliases">
</td>
</tr>
<tr>
<td align="center">
<input type="text" name="reason" value="<ban reason>">
</td>
</tr>
<tr>
<td align="center">
<br>
Add New Player<br>
[[ADD]]
</td>
</tr>
</table>
</form>
#include footer.html
|