14 lines
780 B
PHP
14 lines
780 B
PHP
<?php require_once __DIR__ . '/header.php'; ?>
|
|
|
|
<div class="px-4 py-5 my-5 text-center">
|
|
<h1 class="display-5 fw-bold text-body-emphasis">Client Case Management, Simplified</h1>
|
|
<div class="col-lg-6 mx-auto">
|
|
<p class="lead mb-4">Welcome to your dedicated client portal. Request services, track case progress, and communicate with your account manager seamlessly. Get started by requesting a service below.</p>
|
|
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
|
|
<a href="request-service.php" class="btn btn-primary btn-lg px-4 gap-3">Request a Service</a>
|
|
<button type="button" class="btn btn-outline-secondary btn-lg px-4">Log In</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php require_once __DIR__ . '/footer.php'; ?>
|