You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AccountHub/pages.php

29 lines
449 B
PHP

<?php
// List of pages and metadata
define("PAGES", [
"home" => [
"title" => "{DEFAULT}"
],
"security" => [
"title" => "security options"
],
"404" => [
"title" => "404 error"
]
]);
// Which apps to load on a given page
define("APPS", [
"home" => [
"sample_app"
],
"security" => [
"change_password",
"setup_2fa"
],
"404" => [
"404_error"
]
]);