2024-12-27 02:06:32 +01:00
|
|
|
<link rel="stylesheet" href="/css/dashboard.css">
|
2024-12-26 18:47:00 +01:00
|
|
|
|
2024-12-27 02:06:32 +01:00
|
|
|
<section class="dashboard">
|
|
|
|
<h1>Welcome, <?= htmlspecialchars($_SESSION['user']['username']) ?>!</h1>
|
2024-12-27 17:07:09 +01:00
|
|
|
<div>
|
|
|
|
<a href="/habits/create" class="btn-green">Create new habit!</a>
|
|
|
|
<a href="/habits" class="btn-primary">List all habits</a>
|
|
|
|
</div>
|
2024-12-27 02:06:32 +01:00
|
|
|
<div class="card-wrapper">
|
|
|
|
<section class="card upcoming">
|
|
|
|
<h2>Upcoming</h2>
|
|
|
|
<div class="habit">
|
|
|
|
<b>Habit Title</b>
|
|
|
|
<p>Frequency</p>
|
|
|
|
<p>Reward points</p>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="card recent">
|
|
|
|
<h2>Recent</h2>
|
|
|
|
<div class="habit">
|
|
|
|
<b>Habit Title</b>
|
|
|
|
<p>Frequency</p>
|
|
|
|
<p>Reward points</p>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="card missed">
|
|
|
|
<h2>Missed</h2>
|
|
|
|
<div class="habit">
|
|
|
|
<b>Habit Title</b>
|
|
|
|
<p>Frequency</p>
|
|
|
|
<p>Reward points</p>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="card history-graph">
|
|
|
|
<h2>Graph of History</h2>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="card streak">
|
|
|
|
<h2>Streak</h2>
|
|
|
|
<p>You're current streak is 123 days</p>
|
|
|
|
<p>Good job!</p>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</section>
|