crm-summit/app/Views/form_success.php
2024-04-24 13:20:52 +07:00

12 lines
321 B
PHP

<?= $this->extend('layouts/form.php') ?>
<?= $this->section('content') ?>
<p>Data Updated</p>
<p>Please close this window...</p>
<?= $this->endSection() ?>
<?= $this->section('script') ?>
<script>
//window.onfocus = function () { setTimeout(function () { window.close(); }, 1000); }
</script>
<?= $this->endSection() ?>