diff --git a/agent/calendar.php b/agent/calendar.php
index 9d2ab6f9..af95e4f0 100644
--- a/agent/calendar.php
+++ b/agent/calendar.php
@@ -28,7 +28,7 @@ if (isset($_GET['calendar_id'])) {
-
+
Calendars
@@ -145,19 +145,23 @@ while ($row = mysqli_fetch_assoc($sql)) {
-
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/plugins/fullcalendar/LICENSE.md b/plugins/fullcalendar/LICENSE.md
deleted file mode 100644
index 18ac6673..00000000
--- a/plugins/fullcalendar/LICENSE.md
+++ /dev/null
@@ -1,22 +0,0 @@
-MIT License
-
-Copyright (c) 2021 Adam Shaw
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/plugins/fullcalendar/README.md b/plugins/fullcalendar/README.md
deleted file mode 100644
index 379e2c31..00000000
--- a/plugins/fullcalendar/README.md
+++ /dev/null
@@ -1,73 +0,0 @@
-# FullCalendar
-
-Full-sized drag & drop calendar in JavaScript
-
-- [Project Website](https://fullcalendar.io/)
-- [Documentation](https://fullcalendar.io/docs)
-- [Changelog](CHANGELOG.md)
-- [Support](https://fullcalendar.io/support)
-- [License](LICENSE.md)
-- [Roadmap](https://fullcalendar.io/roadmap)
-
-Connectors:
-
-- [React](https://github.com/fullcalendar/fullcalendar-react)
-- [Angular](https://github.com/fullcalendar/fullcalendar-angular)
-- [Vue 3](https://github.com/fullcalendar/fullcalendar-vue) |
- [2](https://github.com/fullcalendar/fullcalendar-vue2)
-
-## Bundle
-
-The [FullCalendar Standard Bundle](bundle) is easier to install than individual plugins, though filesize will be larger. It works well with a CDN.
-
-## Installation
-
-Install the FullCalendar core package and any plugins you plan to use:
-
-```sh
-npm install @fullcalendar/core @fullcalendar/interaction @fullcalendar/daygrid
-```
-
-## Usage
-
-Instantiate a Calendar with plugins and options:
-
-```js
-import { Calendar } from '@fullcalendar/core'
-import interactionPlugin from '@fullcalendar/interaction'
-import dayGridPlugin from '@fullcalendar/daygrid'
-
-const calendarEl = document.getElementById('calendar')
-const calendar = new Calendar(calendarEl, {
- plugins: [
- interactionPlugin,
- dayGridPlugin
- ],
- initialView: 'timeGridWeek',
- editable: true,
- events: [
- { title: 'Meeting', start: new Date() }
- ]
-})
-
-calendar.render()
-```
-
-## Development
-
-You must install this repo with [PNPM](https://pnpm.io/):
-
-```
-pnpm install
-```
-
-Available scripts (via `pnpm run