aboutsummaryrefslogtreecommitdiff
path: root/app/view/templates/confirmdelete.php
blob: ae8639b050d13a2bb1bd8108ea8c5adad7827c5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php $this->layout('layout', ['title' => 'delete', 'description' => 'delete', 'stylesheets' => [$css . 'home.css']]) ?>


<?php $this->start('page') ?>



<div>

<h1>Delete</h1>

<ul>
<li>Id : <?= $page->id() ?></li>
<li>Title : <?= $page->title() ?></li>
<li>Number of edits : <?= $page->editcount() ?></li>
</ul>



</div>


<form action="<?= $this->upage('pagedelete', $page->id()) ?>" method="post">
<input type="hidden" name="deleteconfirm" value="true">
<input type="submit" value="confirm delete">
</form>



<?php $this->stop() ?>