114 lines
5.4 KiB
PHP
114 lines
5.4 KiB
PHP
<?php include 'header.php'; ?>
|
|
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="card">
|
|
<div class="card-header d-flex justify-content-between align-items-center">
|
|
<h4>Meetings</h4>
|
|
<button class="btn btn-primary btn-sm" data-bs-toggle="modal" data-bs-target="#addMeetingModal">
|
|
<i data-feather="plus"></i> Add Meeting
|
|
</button>
|
|
</div>
|
|
<div class="card-body">
|
|
<div id="meetings-list" class="list-group">
|
|
<!-- Meetings will be listed here -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="card">
|
|
<div class="card-header d-flex justify-content-between align-items-center">
|
|
<h4>Events</h4>
|
|
<button class="btn btn-primary btn-sm" data-bs-toggle="modal" data-bs-target="#addEventModal">
|
|
<i data-feather="plus"></i> Add Event
|
|
</button>
|
|
</div>
|
|
<div class="card-body">
|
|
<div id="events-list" class="list-group">
|
|
<!-- Events will be listed here -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Add Meeting Modal -->
|
|
<div class="modal fade" id="addMeetingModal" tabindex="-1" aria-labelledby="addMeetingModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="addMeetingModalLabel">Add Meeting</h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<form id="addMeetingForm">
|
|
<div class="mb-3">
|
|
<label for="meetingTitle" class="form-label">Title</label>
|
|
<input type="text" class="form-control" id="meetingTitle" name="title" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="meetingDescription" class="form-label">Description</label>
|
|
<textarea class="form-control" id="meetingDescription" name="description" rows="3"></textarea>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="meetingPurpose" class="form-label">Purpose</label>
|
|
<input type="text" class="form-control" id="meetingPurpose" name="purpose">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="meetingDate" class="form-label">Date</label>
|
|
<input type="datetime-local" class="form-control" id="meetingDate" name="date">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="meetingAttendees" class="form-label">Attendees</label>
|
|
<input type="text" class="form-control" id="meetingAttendees" name="attendees">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="meetingSummary" class="form-label">Summary</label>
|
|
<textarea class="form-control" id="meetingSummary" name="summary" rows="3"></textarea>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Save Meeting</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Add Event Modal -->
|
|
<div class="modal fade" id="addEventModal" tabindex="-1" aria-labelledby="addEventModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="addEventModalLabel">Add Event</h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<form id="addEventForm">
|
|
<div class="mb-3">
|
|
<label for="eventTitle" class="form-label">Title</label>
|
|
<input type="text" class="form-control" id="eventTitle" name="title" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="eventDescription" class="form-label">Description</label>
|
|
<textarea class="form-control" id="eventDescription" name="description" rows="3"></textarea>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="eventDate" class="form-label">Date</label>
|
|
<input type="datetime-local" class="form-control" id="eventDate" name="date">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="eventPurpose" class="form-label">Purpose</label>
|
|
<input type="text" class="form-control" id="eventPurpose" name="purpose">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="eventNotes" class="form-label">Notes</label>
|
|
<textarea class="form-control" id="eventNotes" name="notes" rows="3"></textarea>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Save Event</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include 'footer.php'; ?>
|