8 lines
325 B
PHP
8 lines
325 B
PHP
<?= $this->extend("layouts/empty") ?>
|
|
<?= $this->section('content') ?>
|
|
<div class="text-center">
|
|
<div><?= $viewDatas['message'] ?></div>
|
|
<p>작업 완료 후 아래 버튼을 클릭하면 모달이 닫힙니다.</p>
|
|
<button onclick="parent.closeBootstrapModal()">작업 완료</button>
|
|
</div>
|
|
<?= $this->endSection() ?>
|