File: player.html

package info (click to toggle)
scorched3d 41.3dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 159,620 kB
  • ctags: 26,898
  • sloc: cpp: 110,179; xml: 36,743; ansic: 31,536; makefile: 4,321; sh: 3,708; perl: 1,522; java: 209; python: 188; sql: 146
file content (62 lines) | stat: -rw-r--r-- 1,484 bytes parent folder | download
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