Files
billReminder/views/home.php

31 lines
1.2 KiB
PHP

<?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 };
require __DIR__ . '/layouts/app.php';