Auto stash before merge of "main" and "origin/main"

This commit is contained in:
2024-02-09 21:11:19 -06:00
parent f5d267ea98
commit d21d91b80e
17 changed files with 844 additions and 7 deletions

30
views/home.php Normal file
View File

@@ -0,0 +1,30 @@
<?php
// Assuming session_start() is called in the front controller or app.php
$content = function() { ?>
<div class="jumbotron">
<h1 class="display-4">Welcome to Bill Reminder!</h1>
<p class="lead">Never miss a payment again with our easy-to-use bill management system.</p>
<hr class="my-4">
<p>Get started by logging in or registering a new account.</p>
<a class="btn btn-primary btn-lg" href="/login" role="button">Login</a>
<a class="btn btn-secondary btn-lg" href="/register" role="button">Register</a>
</div>
<div class="row">
<div class="col-md-4">
<h2>Track Your Bills</h2>
<p>Keep all your bills in one place and get reminders so you can pay them on time, every time.</p>
</div>
<div class="col-md-4">
<h2>Easy to Use</h2>
<p>Our intuitive interface makes managing your bills simple, whether you're at home or on the go.</p>
</div>
<div class="col-md-4">
<h2>Secure</h2>
<p>Your security is our top priority. We use state-of-the-art security measures to protect your information.</p>
</div>
</div>
<?php };
include __DIR__ . '/layouts/app.php';