diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index b406063..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,100 +0,0 @@
-# Created by https://www.gitignore.io/api/composer,phpstorm+all
-# Edit at https://www.gitignore.io/?templates=composer,phpstorm+all
-
-### Composer ###
-composer.phar
-/vendor/
-
-# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
-# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
-# composer.lock
-
-### PhpStorm+all ###
-# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
-# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
-
-# User-specific stuff
-.idea/**/workspace.xml
-.idea/**/tasks.xml
-.idea/**/usage.statistics.xml
-.idea/**/dictionaries
-.idea/**/shelf
-
-# Generated files
-.idea/**/contentModel.xml
-
-# Sensitive or high-churn files
-.idea/**/dataSources/
-.idea/**/dataSources.ids
-.idea/**/dataSources.local.xml
-.idea/**/sqlDataSources.xml
-.idea/**/dynamic.xml
-.idea/**/uiDesigner.xml
-.idea/**/dbnavigator.xml
-
-# Gradle
-.idea/**/gradle.xml
-.idea/**/libraries
-
-# Gradle and Maven with auto-import
-# When using Gradle or Maven with auto-import, you should exclude module files,
-# since they will be recreated, and may cause churn. Uncomment if using
-# auto-import.
-# .idea/modules.xml
-# .idea/*.iml
-# .idea/modules
-
-# CMake
-cmake-build-*/
-
-# Mongo Explorer plugin
-.idea/**/mongoSettings.xml
-
-# File-based project format
-*.iws
-
-# IntelliJ
-out/
-
-# mpeltonen/sbt-idea plugin
-.idea_modules/
-
-# JIRA plugin
-atlassian-ide-plugin.xml
-
-# Cursive Clojure plugin
-.idea/replstate.xml
-
-# Crashlytics plugin (for Android Studio and IntelliJ)
-com_crashlytics_export_strings.xml
-crashlytics.properties
-crashlytics-build.properties
-fabric.properties
-
-# Editor-based Rest Client
-.idea/httpRequests
-
-# Android studio 3.1+ serialized cache file
-.idea/caches/build_file_checksums.ser
-
-### PhpStorm+all Patch ###
-# Ignores the whole .idea folder and all .iml files
-# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
-
-.idea/
-
-# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
-
-*.iml
-modules.xml
-.idea/misc.xml
-*.ipr
-
-# Sonarlint plugin
-.idea/sonarlint
-
-# End of https://www.gitignore.io/api/composer,phpstorm+all
-
-### NATTRAK Application ###
-.env
-pilots.json
\ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 3514e01..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,60 +0,0 @@
-FROM alpine:latest
-
-# Set the locale
-ENV LANG en_US.UTF-8
-ENV LANGUAGE en_US:en
-ENV LC_ALL en_US.UTF-8
-WORKDIR /application
-RUN apk --update add \
- php7 \
- php7-bcmath \
- php7-dom \
- php7-ctype \
- php7-curl \
- php7-fpm \
- php7-gd \
- php7-iconv \
- php7-intl \
- php7-json \
- php7-mbstring \
- php7-mcrypt \
- php7-fileinfo \
- php7-mysqlnd \
- php7-opcache \
- php7-openssl \
- php7-pdo \
- php7-pdo_mysql \
- php7-pdo_pgsql \
- php7-pdo_sqlite \
- php7-phar \
- php7-posix \
- php7-session \
- php7-soap \
- php7-xml \
- php7-zip \
- php7-tokenizer \
- php7-xmlwriter \
- git \
- php7-simplexml \
- curl \
- npm \
- nginx \
- supervisor \
- && rm -rf /var/cache/apk/*
-
-COPY . /application
-
-COPY docker_files/php.ini /etc/php7/conf.d/50-setting.ini
-COPY docker_files/php-fpm.conf /etc/php7/php-fpm.conf
-COPY docker_files/nginx.conf /etc/nginx/nginx.conf
-COPY docker_files/.env /application/.env
-COPY docker_files/start_nginx.sh /application/start_nginx.sh
-COPY docker_files/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
-
-
-
-RUN cd /application && curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin -- --filename=composer && composer install && chown -R nobody:nobody /application && chmod +x /application/start_nginx.sh
-
-EXPOSE 80
-
-CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
diff --git a/README.md b/README.md
deleted file mode 100644
index 10e54d2..0000000
--- a/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# NAT-TRAK
-Web application for VATSIM North Atlantic Air Traffic Management
-
diff --git a/admin.php b/admin.php
deleted file mode 100644
index 5df17b7..0000000
--- a/admin.php
+++ /dev/null
@@ -1,215 +0,0 @@
-
-require 'header.php';
-
-if (isset($_POST['delete'])) {
- try {
- $id = $_POST['id'];
- $stmt = $pdo->prepare('DELETE FROM controllers WHERE id = ?');
- $stmt->execute([$id]);
- } catch (Exception $e) {
- }
-}
-
-if (isset($_POST['edit'])) {
- try {
- $level = $_POST['level'];
- $id = $_POST['id'];
- $sql = 'UPDATE controllers SET permission=? WHERE id=?';
- $pdo->prepare($sql)->execute([$level, $id]);
- } catch (Exception $e) {
- }
-}
-
-if (isset($_POST['add'])) {
- try {
- $controller_cid = $_POST['controller_cid'];
- $controller_name = $_POST['controller_name'];
- $level = $_POST['level'];
-
- $sql = 'INSERT INTO controllers (cid, name, permission) VALUES (?,?,?)';
- $pdo->prepare($sql)->execute([$controller_cid, $controller_name, $level]);
- } catch (Exception $e) {
- }
-}
-
-if (hasPerm($cid) >= "3") {
-?>
-
-
-
-