13 lines
445 B
PHP
13 lines
445 B
PHP
<?php
|
|
$page_title = 'Calendar';
|
|
include __DIR__ . '/includes/header.php';
|
|
?>
|
|
|
|
<div class="container-fluid p-4">
|
|
<h1 class="h3 mb-4">Project Calendar</h1>
|
|
<p>This page will contain a calendar view of project milestones, deadlines, and other important events. The data will be dynamically loaded based on project and user roles.</p>
|
|
<!-- Calendar integration will go here -->
|
|
</div>
|
|
|
|
<?php include __DIR__ . '/includes/footer.php'; ?>
|