28 lines
877 B
PHP
28 lines
877 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Daily Goals - Today</title>
|
|
<link rel="stylesheet" href="/css/app.css">
|
|
</head>
|
|
<body>
|
|
<header class="site-header">
|
|
<div class="site-header-inner">
|
|
<h1>Today</h1>
|
|
<div class="cluster">
|
|
<a class="btn btn-secondary" href="/home">Home</a>
|
|
<button id="logout" class="btn btn-danger">Logout</button>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<main class="container stack">
|
|
<ul id="scheduled-nodes-list" class="list-cards"></ul>
|
|
<p id="scheduled-nodes-empty" class="muted" hidden>
|
|
Nothing scheduled for today.
|
|
</p>
|
|
</main>
|
|
<script src="/js/auth.js"></script>
|
|
<script src="/js/today.js"></script>
|
|
</body>
|
|
</html>
|