summaryrefslogtreecommitdiff
path: root/app/Template/user_view/profile.php
blob: 486ca428e6ca80bc23b25a3ca05a1468fe652f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
<section id="main">
    <br>
    <?= $this->avatar->render($user['id'], $user['username'], $user['name'], $user['email'], $user['avatar_path']) ?>
    <div class="panel">
        <ul>
            <li><?= t('Login:') ?> <strong><?= $this->text->e($user['username']) ?></strong></li>
            <li><?= t('Full Name:') ?> <strong><?= $this->text->e($user['name']) ?: t('None') ?></strong></li>
            <li><?= t('Email:') ?> <strong><?= $this->text->e($user['email']) ?: t('None') ?></strong></li>
        </ul>
    </div>
</section>