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:
|
<form id="user" method="post" action="{U_ACTION}">
<select name="user" id="user">
<!-- BEGIN user -->
<option value="{user.ID}">{user.NAME}</option>
<!-- END user -->
</select>
<input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />
</form>
<div id="games">
<form action="games.php?action=film" method="post">
<input type="hidden" name="sendfilm" value="sendfilm" />
<input type="hidden" name="action" value="$action" />
<span style="float: left;"><input type="image" src="images/film.gif" width="40" height="40" name="submit" title="film" onClick="submit"></span>
</form>
<form action="games.php?action=computer" method="post">
<input type="hidden" name="sendcomputer" value="sendcomputer" />
<input type="hidden" name="action" value="$action" />
<span style="float: left;"><input type="image" src="images/computer.gif" width="40" height="40" name="computer" title="computer" onClick="submit()"></span>
</form>
<form action="games.php?action=hase" method="post">
<input type="hidden" name="sendhase" value="sendhase" />
<input type="hidden" name="action" value="$action" />
<span style="float: left;"><input type="image" src="images/hase.gif" width="40" height="40" name="hase" title="hase" onClick="submit()"></span>
</form>
|