mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-02 18:44:21 +00:00
28 lines
897 B
Smarty
28 lines
897 B
Smarty
<?php
|
|
if(isset($aid)) {
|
|
$aid = $aid;
|
|
}
|
|
else {
|
|
$aid = $session->alliance;
|
|
}
|
|
$allianceinfo = $database->getAlliance($aid);
|
|
echo "<h1>".$allianceinfo['tag']." - ".$allianceinfo['name']."</h1>";
|
|
include("alli_menu.tpl");
|
|
?>
|
|
<table cellpadding="1" cellspacing="1" id="quit" class="small_option"><thead>
|
|
|
|
<form method="post" action="allianz.php">
|
|
<input type="hidden" name="a" value="11">
|
|
<input type="hidden" name="o" value="11">
|
|
<input type="hidden" name="s" value="5">
|
|
|
|
<tr>
|
|
<th colspan="2">Quit alliance</th>
|
|
</tr>
|
|
</thead><tbody>
|
|
<tr><td colspan="2" class="info">In order to quit the alliance you have to enter your password again for safety reasons.</td></tr>
|
|
<tr><th>password:</th>
|
|
<td><input class="pass text" type="password" name="pw" maxlength="20"></td>
|
|
</tr></tbody></table>
|
|
|
|
<p><input type="image" value="ok" name="s1" id="btn_ok" class="dynamic_img" src="img/x.gif" alt="OK" /></form></p> |