13 lines
439 B
PHP
13 lines
439 B
PHP
<?php
|
|
$page_title = 'Approvals';
|
|
include __DIR__ . '/includes/header.php';
|
|
?>
|
|
|
|
<div class="container-fluid p-4">
|
|
<h1 class="h3 mb-4">Approval Queue</h1>
|
|
<p>This page will display a list of creative assets and other items pending approval. Clients and managers will be able to review and approve or reject work from this screen.</p>
|
|
<!-- Approval list will go here -->
|
|
</div>
|
|
|
|
<?php include __DIR__ . '/includes/footer.php'; ?>
|