Dragon-Knight/templates/leftnav.php

41 lines
1.1 KiB
PHP
Raw Normal View History

<?php
$template = <<<THEVERYENDOFYOU
<table width="100%">
<tr><td class="title"><img src="images/button_location.gif" alt="Location" title="Location" /></td></tr>
<tr><td>
2024-12-12 11:28:19 -06:00
Currently: {{currentaction}}<br>
Latitude: {{latitude}}<br>
Longitude: {{longitude}}<br>
<a href="javascript:openmappopup()">View Map</a><br><br>
<form action="index.php?do=move" method="post">
<center>
2024-12-12 11:28:19 -06:00
<input name="north" type="submit" value="North" /><br>
<input name="west" type="submit" value="West" /><input name="east" type="submit" value="East" /><br>
<input name="south" type="submit" value="South" />
</center>
</form>
</td></tr>
2024-12-12 11:28:19 -06:00
</table><br>
<table width="100%">
<tr><td class="title"><img src="images/button_towns.gif" alt="Towns" title="Towns" /></td></tr>
<tr><td>
{{currenttown}}
2024-12-12 11:28:19 -06:00
Travel To:<br>
{{townslist}}
</td></tr>
2024-12-12 11:28:19 -06:00
</table><br>
<table width="100%">
<tr><td class="title"><img src="images/button_functions.gif" alt="Functions" title="Functions" /></td></tr>
<tr><td>
{{forumslink}}
{{adminlink}}
2024-12-12 11:28:19 -06:00
<a href="users.php?do=changepassword">Change Password</a><br>
<a href="login.php?do=logout">Log Out</a><br>
2017-02-05 10:55:54 -06:00
<a href="help.php">Help</a>
</td></tr>
2024-12-12 11:28:19 -06:00
</table><br>
THEVERYENDOFYOU;
2024-12-12 11:28:19 -06:00
?>