45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
$template = <<<HTML
|
|
<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>
|
|
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>
|
|
<a href="/index.php">Home</a><br>
|
|
{{forumslink}}
|
|
{{adminlink}}
|
|
<a href="users.php?do=changepassword">Change Password</a><br>
|
|
<a href="login.php?do=logout">Log Out</a><br>
|
|
<a href="help.php">Help</a>
|
|
</td></tr>
|
|
</table>
|
|
HTML;
|