mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
92 lines
3.1 KiB
Smarty
92 lines
3.1 KiB
Smarty
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename punish.tpl ##
|
|
## Developed by: aggenkeech ##
|
|
## License: TravianX Project ##
|
|
## Copyright: TravianX (c) 2010-2012. All rights reserved. ##
|
|
## ##
|
|
#################################################################################
|
|
|
|
$active = $admin->getUserActive();
|
|
?>
|
|
|
|
<style>
|
|
.del {width:12px; height:12px; background-image: url(img/admin/icon/del.gif);}
|
|
</style>
|
|
|
|
<form method="post" action="admin.php">
|
|
<input name="action" type="hidden" value="punish">
|
|
<input name="uid" type="hidden" value="<?php echo $user['id'];?>">
|
|
<input type="hidden" name="admid" id="admid" value="<?php echo $_SESSION['id']; ?>">
|
|
|
|
<table id="member" style="width: 200px;">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2">Punish Player</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<center>
|
|
<select name="punish">
|
|
<option name="punish" value="10" selected="selected">10%</option>
|
|
<option name="punish" value="20">20%</option>
|
|
<option name="punish" value="30">30%</option>
|
|
<option name="punish" value="40">40%</option>
|
|
<option name="punish" value="50">50%</option>
|
|
<option name="punish" value="60">60%</option>
|
|
<option name="punish" value="70">70%</option>
|
|
<option name="punish" value="80">80%</option>
|
|
<option name="punish" value="90">90%</option>
|
|
<option name="punish" value="100">100%</option>
|
|
</select>
|
|
</center>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<center>
|
|
<input type="image" src="../img/admin/b/ok1.gif" value="submit">
|
|
</form>
|
|
</center>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<form method="post" action="admin.php">
|
|
<input name="action" type="hidden" value="punish">
|
|
<input name="uid" type="hidden" value="<?php echo $user['id'];?>">
|
|
<input type="hidden" name="admid" id="admid" value="<?php echo $_SESSION['id']; ?>">
|
|
<td colspan="1" style="text-align: center;">
|
|
<input type="checkbox" name="del_troop" value="1"> <strike>Delete Troops</strike>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<center>
|
|
<input type="image" src="../img/admin/b/ok1.gif" value="submit">
|
|
</form>
|
|
</center>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<form method="post" action="admin.php">
|
|
<input name="action" type="hidden" value="punish">
|
|
<input name="uid" type="hidden" value="<?php echo $user['id'];?>">
|
|
<input type="hidden" name="admid" id="admid" value="<?php echo $_SESSION['id']; ?>">
|
|
<td colspan="1" style="text-align: center;">
|
|
<input type="checkbox" name="clean_ware" value="1"> Empty Warehouses
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<center>
|
|
<input type="image" src="../img/admin/b/ok1.gif" value="submit">
|
|
</center>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form> |