Right nax no longer uses tables

This commit is contained in:
Sky Johnson 2024-12-13 12:51:10 -06:00
parent 61ae46714d
commit 82a2e42cb9

View File

@ -1,39 +1,30 @@
<?php <?php
$template = <<<THEVERYENDOFYOU $template = <<<HTML
<table width="100%"> <section>
<tr><td class="title"><img src="/img/button_character.gif" alt="Character" title="Character" /></td></tr> <div class="title"><img src="/img/button_character.gif" alt="Character" title="Character"></div>
<tr><td> <b>{{username}}</b><br>
<b>{{username}}</b><br> Level: {{level}}<br>
Level: {{level}}<br> Exp: {{experience}}<br>
Exp: {{experience}}<br> Gold: {{gold}}<br>
Gold: {{gold}}<br> HP: {{currenthp}}<br>
HP: {{currenthp}}<br> MP: {{currentmp}}<br>
MP: {{currentmp}}<br> TP: {{currenttp}}<br>
TP: {{currenttp}}<br> {{statbars}}<br>
{{statbars}}<br> <a href="javascript:opencharpopup()">Extended Stats</a>
<a href="javascript:opencharpopup()">Extended Stats</a> </section>
</td></tr>
</table><br>
<table width="100%"> <section>
<tr><td class="title"><img src="/img/button_inventory.gif" alt="Inventory" title="Inventory" /></td></tr> <div class="title"><img src="/img/button_inventory.gif" alt="Inventory" title="Inventory"></div>
<tr><td> <img src="/img/icon_weapon.gif" alt="Weapon" title="Weapon"> Weapon: {{weaponname}}<br>
<table width="100%"> <img src="/img/icon_armor.gif" alt="Armor" title="Armor"> Armor: {{armorname}}<br>
<tr><td><img src="/img/icon_weapon.gif" alt="Weapon" title="Weapon" /></td><td width="100%">Weapon: {{weaponname}}</td></tr> <img src="/img/icon_shield.gif" alt="Shield" title="Shield"> Shield: {{shieldname}}<br>
<tr><td><img src="/img/icon_armor.gif" alt="Armor" title="Armor" /></td><td width="100%">Armor: {{armorname}}</td></tr> Slot 1: {{slot1name}}<br>
<tr><td><img src="/img/icon_shield.gif" alt="Shield" title="Shield" /></td><td width="100%">Shield: {{shieldname}}</td></tr> Slot 2: {{slot2name}}<br>
</table> Slot 3: {{slot3name}}
Slot 1: {{slot1name}}<br> </section>
Slot 2: {{slot2name}}<br>
Slot 3: {{slot3name}}
</td></tr>
</table><br>
<table width="100%"> <section>
<tr><td class="title"><img src="/img/button_fastspells.gif" alt="Fast Spells" title="Fast Spells" /></td></tr> <div class="title"><img src="/img/button_fastspells.gif" alt="Fast Spells" title="Fast Spells"></div>
<tr><td> {{magiclist}}
{{magiclist}} </section>
</td></tr> HTML;
</table><br>
THEVERYENDOFYOU;
?>