Files
public
src
templates
admin
index.html.php
users.html.php
users_add.html.php
users_edit.html.php
security
status
_footer.html.php
_header.html.php
_header.tpl
index.html.php
index.tpl
.gitinore
LICENSE
README.md
config.json.sample
addressbook/templates/admin/index.html.php
2022-10-24 18:44:42 +02:00

7 lines
221 B
PHP

<?php include dirname(path: __DIR__) . '/_header.html.php'; ?>
<h1>Address Book - Admin</h1>
<a href="<?= $router->path('app_admin_users') ?>">👱Users</a>
<?php include dirname(path: __DIR__) . '/_footer.html.php' ?>