diff options
Diffstat (limited to 'app/view/templates/home.php')
-rw-r--r-- | app/view/templates/home.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php index 160b383..fab5146 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -18,19 +18,17 @@ </div> - -<div id="flex"> <?php $this->insert('homeopt', ['opt' => $opt, 'user' => $user]) ?> +<div id="main"> +<article id="main"> -<div id="main"> <h2>Pages</h2> - <form action="/massedit" method="post"> <div id="massedit"> @@ -55,6 +53,7 @@ <table id="home2table"> + <thead> <tr> <th>x</th> <th><a href="<?= $opt->getadress('id') ?>">id</a></th> @@ -89,6 +88,8 @@ <th class="affcount"><a href="<?= $opt->getadress('affcount') ?>">aff</a></th> <?php } ?> </tr> + </thead> + <tbody> <?php foreach ($table2 as $item) { ?> <tr> <td><input type="checkbox" name="id[]" value="<?= $item->id() ?>" id="id_<?= $item->id() ?>"></td> @@ -126,9 +127,10 @@ </tr> <?php }?> + </tbody> </table> </form> -</div> +</article> </div> </main> |