diff --git a/ShiftOS.Server.WebAdmin/App.config b/ShiftOS.Server.WebAdmin/App.config
deleted file mode 100644
index 2a7dffa..0000000
--- a/ShiftOS.Server.WebAdmin/App.config
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/ShiftOS.Server.WebAdmin/Program.cs b/ShiftOS.Server.WebAdmin/Program.cs
deleted file mode 100644
index 1e4a0b8..0000000
--- a/ShiftOS.Server.WebAdmin/Program.cs
+++ /dev/null
@@ -1,808 +0,0 @@
-/*
- * MIT License
- *
- * Copyright (c) 2017 Michael VanOverbeek and ShiftOS devs
- *
- * 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.
- */
-
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Nancy;
-using Nancy.Authentication.Forms;
-using Nancy.Bootstrapper;
-using Nancy.Hosting.Self;
-using Nancy.ModelBinding;
-using Nancy.Security;
-using Nancy.TinyIoc;
-using Newtonsoft.Json;
-using ShiftOS.Objects;
-
-namespace ShiftOS.Server.WebAdmin
-{
- class Program
- {
- static void Main(string[] args)
- {
- var HostConf = new HostConfiguration();
- HostConf.UrlReservations.CreateAutomatically = true;
- HostConf.RewriteLocalhost = true;
- using(var nancy = new NancyHost(HostConf, new Uri("http://localhost:13371/mudadmin/")))
- {
- nancy.Start();
- Console.WriteLine($"[{DateTime.Now}] Initiating on localhost:13371...");
- Console.ReadLine();
- }
- }
- }
-
- public static class PageBuilder
- {
- public static string Build(string page, Dictionary templateParams = null)
- {
- string templatehtml = Properties.Resources.HtmlTemplate;
- if (templateParams == null)
- {
- templateParams = new Dictionary();
- }
- if (!templateParams.ContainsKey("{logout}"))
- {
- templateParams.Add("{logout}", "
Please fill out the details below for your channel list to be modified.
-
-{form}
\ No newline at end of file
diff --git a/ShiftOS.Server.WebAdmin/Resources/ChatListView.txt b/ShiftOS.Server.WebAdmin/Resources/ChatListView.txt
deleted file mode 100644
index eedfc07..0000000
--- a/ShiftOS.Server.WebAdmin/Resources/ChatListView.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-
Chats
-
-
On this page you can find a list of all chats in the system. Chats are a part of the multi-user domain that allows online players to talk to eachother in the 'MUD Chat' application.
-
-
If you have a Discord server for your multi-user domain, you can also designate a ShiftOS chat to listen on a specific channel on your server. You will need to create a Discord Bot Token and specify the ID of the channel you want tolisten to.
-
-
Once the chat is set up, you should see a bot join your Discord server. Once it does, any messages received by the server in that channel will be relayed into ShiftOS, and any messages received by the MUD in the ShiftOS channel will be relayed to Discord.
-
- Create chat
-
-{chat_table}
\ No newline at end of file
diff --git a/ShiftOS.Server.WebAdmin/Resources/GenericTableList.txt b/ShiftOS.Server.WebAdmin/Resources/GenericTableList.txt
deleted file mode 100644
index 3cbfd6e..0000000
--- a/ShiftOS.Server.WebAdmin/Resources/GenericTableList.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-
{listtitle}
-
-
{listdesc}
-
-{list}
\ No newline at end of file
diff --git a/ShiftOS.Server.WebAdmin/Resources/HtmlTemplate.txt b/ShiftOS.Server.WebAdmin/Resources/HtmlTemplate.txt
deleted file mode 100644
index 82893e9..0000000
--- a/ShiftOS.Server.WebAdmin/Resources/HtmlTemplate.txt
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
- Multi-user domain • ShiftOS
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/ShiftOS.Server.WebAdmin/Resources/LoginView.txt b/ShiftOS.Server.WebAdmin/Resources/LoginView.txt
deleted file mode 100644
index d5e61cf..0000000
--- a/ShiftOS.Server.WebAdmin/Resources/LoginView.txt
+++ /dev/null
@@ -1,31 +0,0 @@
-
Access denied.
-
-
You require a higher authentication level to access this part of the multi-user domain. Please enter the username and password of whom has access to this sector.
-
-
-
-
-
-
What are my credentials?
-
If you do not know your credentials, you are not a ShiftOS developer with write-access to the GitHub repository and authorized access to the multi-user domain's backend, so we ask that you get off this site and try to hack the MUD in-game. Thank you.
-
-
-
I am a developer.
-
Please contact Michael VanOverbeek if you are a developer and have not yet received your credentials.
-
-
\ No newline at end of file
diff --git a/ShiftOS.Server.WebAdmin/Resources/NoUsersFound.txt b/ShiftOS.Server.WebAdmin/Resources/NoUsersFound.txt
deleted file mode 100644
index 7524fa5..0000000
--- a/ShiftOS.Server.WebAdmin/Resources/NoUsersFound.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-
No users found.
-
-
Your multi-user domain is newly-created. Before you can use the admin panel, you must create a ShiftOS user to act as the administrator of the MUD.
-
-{user_create_form}
\ No newline at end of file
diff --git a/ShiftOS.Server.WebAdmin/Resources/SetupView.txt b/ShiftOS.Server.WebAdmin/Resources/SetupView.txt
deleted file mode 100644
index 9e83a45..0000000
--- a/ShiftOS.Server.WebAdmin/Resources/SetupView.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-
Initial setup
-
-
This multi-user domain contains some users, however none of them are administrators. Please choose your user to make it an admin.
-
-{savelist}
\ No newline at end of file
diff --git a/ShiftOS.Server.WebAdmin/Resources/Status.txt b/ShiftOS.Server.WebAdmin/Resources/Status.txt
deleted file mode 100644
index b63d9cd..0000000
--- a/ShiftOS.Server.WebAdmin/Resources/Status.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
System status
-
-
Below is a summary of this multi-user domain's status.