Files
public
src
templates
addressbook
admin
index.html.php
users.html.php
users_add.html.php
users_edit.html.php
security
status
_footer.html.php
_header.html.php
index.html.php
.gitignore
LICENSE
README.md
addressbook.sql
config.json.sample
addressbook/templates/admin/index.html.php

10 lines
471 B
PHP

<?php include dirname(path: __DIR__) . '/_header.html.php'; ?>
<br>
<h1>Address Book - Admin</h1>
<a href="<?= $router->path('app_admin_users'); ?>">&#128113;&nbsp;Users</a>
<?php include dirname(path: __DIR__) . '/_footer.html.php' ?>
<button type="button" class="info_button" id="info_button" onclick="setInfo('Test Info - auto hide')">Info</button>
<button type="button" class="error_button" onclick="setError('Test Error - must be closed manually')">Error</button>