36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
$template = <<<HTML
|
|
<section>
|
|
<div class="title"><img src="/img/button_location.gif" alt="Location" title="Location"></div>
|
|
Currently: {{currentaction}}<br>
|
|
Latitude: {{latitude}}<br>
|
|
Longitude: {{longitude}}<br>
|
|
<a href="javascript:openmappopup()">View Map</a><br>
|
|
<form action="/move" method="post" class="move-compass">
|
|
<button type="submit" name="direction" value="north" class="north">North</button>
|
|
<div class="mid">
|
|
<button type="submit" name="direction" value="west" class="west">West</button>
|
|
<button type="submit" name="direction" value="east" class="east">East</button>
|
|
</div>
|
|
<button type="submit" name="direction" value="south" class="south">South</button>
|
|
</form>
|
|
</section>
|
|
|
|
<section>
|
|
<div class="title"><img src="/img/button_towns.gif" alt="Towns" title="Towns"></div>
|
|
{{currenttown}}
|
|
Travel To:<br>
|
|
{{townslist}}
|
|
</section>
|
|
|
|
<section>
|
|
<div class="title"><img src="/img/button_functions.gif" alt="Functions" title="Functions"></div>
|
|
<a href="/">Home</a><br>
|
|
{{forumslink}}
|
|
{{adminlink}}
|
|
<a href="/changepassword">Change Password</a><br>
|
|
<a href="/logout">Log Out</a><br>
|
|
<a href="/help">Help</a>
|
|
</section>
|
|
HTML;
|