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 63 64 65 66 67 68 69 70 71
|
#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>Ping</td>
<td>Select</td>
</tr>
[[PLAYERS]]
</table>
Players : [[NOPLAYERS]]
</td>
</tr>
<tr>
<td align="center">
<br>
Selected Player Actions<br>
{{kickplayer}}<input type="submit" name="action" value="Kick">{{kickplayer}}
{{banplayer}}<input type="submit" name="action" value="Banned">{{banplayer}}
<input type="submit" name="action" value="Slap">
<input type="submit" name="action" value="Kill">
<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="ChangeName">
{{aliasesplayer}}
<input type="submit" name="action" value="ShowAliases">
<input type="submit" name="action" value="ShowIPAliases">
{{aliasesplayer}}
</td>
</tr>
{{banplayer}}
<tr>
<td align="center">
<input type="text" name="reason" value="<ban reason>">
</td>
</tr>
{{banplayer}}
{{addplayer}}
<tr>
<td align="center">
<br>
Add New Player<br>
[[ADD]]
</td>
</tr>
{{addplayer}}
</table>
</form>
#include footer.html
|