21 lines
350 B
PHP
21 lines
350 B
PHP
<?= $this->extend('layouts/default') ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<div class="has-text-centered">
|
|
<?php if ($authorised): ?>
|
|
|
|
<h3>
|
|
Wellcome <?= esc($name) ?>
|
|
(<?= esc($email) ?>) to ci4-auth
|
|
</h3>
|
|
|
|
<?php else : ?>
|
|
|
|
<h3>Feel free to try ci4-auth</h3>
|
|
|
|
<?php endif ?>
|
|
|
|
</div>
|
|
|
|
<?= $this->endSection() ?>
|