id/views/dashboard.php

37 lines
1.5 KiB
PHP
Raw Normal View History

2024-07-03 14:20:39 +01:00
<!doctype html>
<html>
<head>
<?php include 'partials/head.php'; ?>
2024-07-03 21:28:13 +01:00
<title><?= get_string('page.dashboard') ?> ~> ByeCorps ID</title>
<link rel="stylesheet" href="/styles/dashboard.css" />
2024-07-03 14:20:39 +01:00
</head>
<body>
<?php include 'partials/header.php'; ?>
<main>
<h1><?= get_string('page.dashboard') ?></h1>
2024-07-03 21:28:13 +01:00
<div class="grid">
<ul>
<li>
<a href="/profile" class="item">
<div class="icon"><span class="fa-fw fa-solid fa-id-card"></span></div>
<div class="label"><?= get_string('page.profile') ?></div>
</a>
</li>
<li>
<a href="/settings" class="item">
<div class="icon"><span class="fa-fw fa-solid fa-cog"></span></div>
<div class="label"><?= get_string('page.settings') ?></div>
</a>
</li>
<li>
<a href="/auth/signout" class="item">
<div class="icon"><span class="fa-fw fa-solid fa-right-to-bracket"></span></div>
<span class="label"><?= get_string('auth.signout') ?></span>
</a>
</li>
</ul>
</div>
2024-07-03 14:20:39 +01:00
</main>
<?php include 'partials/footer.php'; ?>
</body>
</html>