19 lines
502 B
PHP
19 lines
502 B
PHP
<?php
|
|
require_once 'auth.php';
|
|
|
|
$page_title = 'Vouchers';
|
|
|
|
require_once 'partials/header.php';
|
|
?>
|
|
|
|
<div class="container-fluid">
|
|
<div class="d-flex justify-content-between align-items-center">
|
|
<h1 class="h3 mb-0 text-gray-800"><?php echo $page_title; ?></h1>
|
|
<button class="btn btn-primary"><i data-feather="plus" class="mr-2"></i>Create Voucher</button>
|
|
</div>
|
|
<hr>
|
|
<p>Voucher management page content goes here.</p>
|
|
</div>
|
|
|
|
<?php require_once 'partials/footer.php'; ?>
|