Dragon-Knight/templates/leftnav.php

39 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>
Currently: {{currentaction}}<br />
Latitude: {{latitude}}<br />
2017-02-05 10:51:23 -06:00
Longitude: {{longitude}}<br />
<a href="javascript:openmappopup()">View Map</a><br /><br />
<form action="index.php?do=move" method="post">
<center>
<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>
</table><br />
<table width="100%">
<tr><td class="title"><img src="images/button_towns.gif" alt="Towns" title="Towns" /></td></tr>
<tr><td>
{{currenttown}}
Travel To:<br />
{{townslist}}
</td></tr>
</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}}
<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>
</table><br />
THEVERYENDOFYOU;
?>