File: player.html

package info (click to toggle)
scorched3d 44%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 112,612 kB
  • sloc: cpp: 135,987; xml: 36,739; makefile: 4,714; sh: 3,172; ansic: 1,407; perl: 541; java: 209; python: 188; sql: 159
file content (71 lines) | stat: -rw-r--r-- 1,850 bytes parent folder | download | duplicates (5)
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