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

12 lines
364 B
PHP

<?= $this->extend('layouts/form.php') ?>
<?= $this->section('content') ?>
<p>Data Update Failed</p>
<p>Please report to administrator about this and close this window...</p>
<?= $this->endSection() ?>
<?= $this->section('script') ?>
<script>
window.onfocus = function () { setTimeout(function () { window.close(); }, 5000); }
</script>
<?= $this->endSection() ?>