mirror of https://github.com/byecorps/id.git
14 lines
380 B
PHP
14 lines
380 B
PHP
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title><?= get_string('page.dashboard') ?> ~> ByeCorps ID</title>
|
||
|
<?php include 'partials/head.php'; ?>
|
||
|
</head>
|
||
|
<body>
|
||
|
<?php include 'partials/header.php'; ?>
|
||
|
<main>
|
||
|
<h1><?= get_string('page.dashboard') ?></h1>
|
||
|
</main>
|
||
|
<?php include 'partials/footer.php'; ?>
|
||
|
</body>
|
||
|
</html>
|