12 lines
364 B
PHP
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() ?>
|