mirror of
https://github.com/ThomasGsp/HyperProxmox.git
synced 2025-03-09 15:40:18 +00:00
21 lines
810 B
PHP
21 lines
810 B
PHP
<div class="container">
|
|
<h1>LoginController/showProfile</h1>
|
|
|
|
<div class="box">
|
|
<h2>Your profile</h2>
|
|
|
|
<!-- echo out the system feedback (error and success messages) -->
|
|
<?php $this->renderFeedbackMessages(); ?>
|
|
|
|
<div>Your username: <?= $this->user_name; ?></div>
|
|
<div>Your email: <?= $this->user_email; ?></div>
|
|
<div>Your avatar image:
|
|
<?php if (Config::get('USE_GRAVATAR')) { ?>
|
|
Your gravatar pic (on gravatar.com): <img src='<?= $this->user_gravatar_image_url; ?>' />
|
|
<?php } else { ?>
|
|
Your avatar pic (saved locally): <img src='<?= $this->user_avatar_file; ?>' />
|
|
<?php } ?>
|
|
</div>
|
|
<div>Your account type is: <?= $this->user_account_type; ?></div>
|
|
</div>
|
|
</div>
|