mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-02 18:44:21 +00:00
32 lines
860 B
Smarty
32 lines
860 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");
|
|
?>
|
|
<form method="post" action="allianz.php">
|
|
<input type="hidden" name="a" value="5">
|
|
<input type="hidden" name="o" value="5">
|
|
<input type="hidden" name="s" value="5">
|
|
|
|
<tr>
|
|
<th colspan="2">Link to the forum</th>
|
|
</tr>
|
|
|
|
</thead><tbody>
|
|
|
|
<tr><th>URL</th>
|
|
<td><input class="link text" type="text" name="f_link" value="<?php echo $allianceinfo['forumlink']; ?>" maxlength="200"></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2" class="info">If your alliance wants to use an external forum, you can enter the url here.</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> |