summaryrefslogtreecommitdiff
path: root/app/Template/user_status/enable.php
blob: cd3d49471fa0eeb7e1ddfc089ac26086bd9c1997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="page-header">
    <h2><?= t('Enable user') ?></h2>
</div>

<div class="confirm">
    <p class="alert alert-info"><?= t('Do you really want to enable this user: "%s"?', $user['name'] ?: $user['username']) ?></p>

    <div class="form-actions">
        <?= $this->url->link(t('Yes'), 'UserStatus', 'enable', array('user_id' => $user['id']), true, 'btn btn-red') ?>
        <?= t('or') ?>
        <?= $this->url->link(t('cancel'), 'user', 'index', array(), false, 'close-popover') ?>
    </div>
</div>