ZnoteAAC/layout/widgets/loggedin.php
Rodrigo Paixão 2817010781 Compatibility with OTHire (#330)
* Preparing compatibility to OTHire

* Still working on compatibility to OTHire

* More compatibility

* More compatibility

Not tested yet

* Some fixes

- Fixed Account Creation.
- Fixed a problem that you can't load the website, that include that you can now recover your account number.

* More fixes

- Fixed character creation.
- Fixed login problem.
- Fixed displaying account number in My Account.
- Fixed displaying if you have premium days or not in My Account.

* More fixes

- Handle Kills/Deaths as TFS_03

* More fixes

- Fixed showing outfits in character profile
- Fixed displaying player houses in character profile
- Fixed displaying guilds

* Update init.php
2018-12-03 07:58:29 +01:00

22 lines
507 B
PHP

<div class="sidebar">
<h2>Welcome, <?php if ($config['ServerEngine'] !== 'OTHIRE') echo $user_data['name']; else echo $user_data['id'];?>.</h2>
<div class="inner">
<ul>
<li>
<a href='myaccount.php'>My Account</a>
</li>
<li>
<a href='createcharacter.php'>Create Character</a>
</li>
<li>
<a href='changepassword.php'>Change Password</a>
</li>
<li>
<a href='settings.php'>Settings</a>
</li>
<li>
<a href='logout.php'>Logout</a>
</li>
</ul>
</div>
</div>