8 lines
308 B
PHP
8 lines
308 B
PHP
<section class="card">
|
|
<h1><?= $e($t('dashboard.title')) ?></h1>
|
|
<p class="muted"><?= $e($t('dashboard.description')) ?></p>
|
|
<?php if (!empty($user['email'])): ?>
|
|
<p><?= $e($t('dashboard.active_user_label')) ?> <span class="accent"><?= $e($user['email']) ?></span></p>
|
|
<?php endif; ?>
|
|
</section>
|