View file modules/profile/templates/ban_cancel.phtml

File size: 759B
<?php

/**
 * This file is part of JohnCMS Content Management System.
 *
 * @copyright JohnCMS Community
 * @license   https://opensource.org/licenses/GPL-3.0 GPL-3.0
 * @link      https://johncms.com JohnCMS Project
 */

/**
 * @var $title
 * @var $page_title
 * @var $data
 */

$this->layout(
    'system::layout/default',
    [
        'title'      => $title,
        'page_title' => $title,
    ]
);
?>

<form action="<?= $data['form_action'] ?>" method="post">
    <div>
        <?= $data['message'] ?>
    </div>
    <div class="mt-3">
        <input type="submit" name="submit" value="<?= $data['submit_name'] ?>" class="btn btn-primary"/>
        <a href="<?= $data['back_url'] ?>" class="btn btn-secondary"><?= __('Cancel') ?></a>
    </div>
</form>