Goal-Calibration/views/templates/admin.php
Yisroel Baum e51378b8c7
style admin landing page with shell and card nav
wrap the admin page in the shared header (with the logout button)
and present the texts entry-point as a card-link in a list-cards
list. the #texts and #logout id hooks used by cypress are
preserved.
2026-05-01 11:33:05 +03:00

29 lines
802 B
PHP

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Daily Goals - Admin</title>
<link rel="stylesheet" href="/css/app.css">
</head>
<body>
<header class="site-header">
<div class="site-header-inner">
<h1>Admin</h1>
<div class="cluster">
<button id="logout" class="btn btn-danger">Logout</button>
</div>
</div>
</header>
<main class="container stack">
<ul class="list-cards">
<li class="card">
<a id="texts" class="card-link" href="/admin/texts">
Texts
</a>
</li>
</ul>
</main>
<script src="/js/auth.js"></script>
</body>
</html>