15 lines
294 B
PHP
15 lines
294 B
PHP
<?php
|
|
require_once 'auth.php';
|
|
|
|
$page_title = 'Billing';
|
|
|
|
require_once 'partials/header.php';
|
|
?>
|
|
|
|
<div class="container-fluid">
|
|
<h1 class="h3 mb-4 text-gray-800"><?php echo $page_title; ?></h1>
|
|
<p>Billing page content goes here.</p>
|
|
</div>
|
|
|
|
<?php require_once 'partials/footer.php'; ?>
|