diff --git a/WorkSpaces.sql b/WorkSpaces.sql
deleted file mode 100644
index 67a3cb64bed193ba80389861fe810abeebf4003c..0000000000000000000000000000000000000000
--- a/WorkSpaces.sql
+++ /dev/null
@@ -1,19 +0,0 @@
-DELETE FROM 'coworking_spaces' WHERE Name = 'Name';
---DROP TABLE IF EXISTS coworking_spaces;
-
-
---CREATE TABLE IF NOT EXISTS 'coworking_spaces' (
---`Name`	TEXT NOT NULL,
---`Address`	TEXT NOT NULL,
---`Main_Photo`	TEXT NOT NULL,
---`Additional_photos`	TEXT NOT NULL,
---`Description`	TEXT NOT NULL,
---`Website`	TEXT NOT NULL,
---`Email`	TEXT NOT NULL,
---`Phone_Number`	TEXT NOT NULL,
---`Opening_Hours`	TEXT NOT NULL,
---`Checkin_Instructions`	TEXT NOT NULL,
---);
-
-
---INSERT INTO 'coworking_spaces'('Name','Address', 'Main_Photo', 'Additional_photos','Description','Website','Email','Phone_Number','Opening_Hours','Checkin_Instructions') VALUES ('Codebase	CodeBase Edinburgh' , '37a Castle Terrace, Edinburgh, EH1 2EL	', 'https://images.squarespace-cdn.com/content/v1/55439320e4b0f92b5d6c4c8b/1646867535415-4JI39H286BUMT26H4FHN/C36A1915.jpg?format=2500w','	https://images.squarespace-cdn.com/content/v1/55439320e4b0f92b5d6c4c8b/1646868533510-J1OT4PEG5VM9FCBF8BJE/15.10.19_-_CREATIVE_BRIDGE_C02_-_DAY01_-_LQ-19+%281%29.jpg?format=2500w','https://images.squarespace-cdn.com/content/v1/55439320e4b0f92b5d6c4c8b/1646868421127-07KQ4N1OHTDDKQME686A/15.10.19_-_CREATIVE_BRIDGE_C02_-_DAY01_-_LQ-52+%281%29.jpg?format=2500w',	'Hi. We’re CodeBase. We've been exploring the world of startups and innovation for over five years now. We're not really sure how to best describe what we do, but we think the words "tech cluster" probably do it best. Please get in touch! We’re friendly people who are geeky about building tech startups, managing disruption and innovation.',	'https://www.thisiscodebase.com','info@thisiscodebase.com','(+44) 0131 560 2003',	'08:00 - 17:00','	Use the email address or phone number to call ahead and book a desk, let them know you're a Tramshed member');
diff --git a/db.db b/db.db
deleted file mode 100644
index 5f9d80005cbae66644b07bf7ed1162f834562839..0000000000000000000000000000000000000000
Binary files a/db.db and /dev/null differ
diff --git a/db.sqbpro b/db.sqbpro
deleted file mode 100644
index 734218bd4db433dbb6b6cc27daf278c0da36340e..0000000000000000000000000000000000000000
--- a/db.sqbpro
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?><sqlb_project><db path="C:/Users/c21070842/OneDrive - Cardiff University/Desktop/tramshed-tech-client-project-team-15/db.db" readonly="0" foreign_keys="1" case_sensitive_like="0" temp_store="0" wal_autocheckpoint="1000" synchronous="2"/><attached/><window><main_tabs open="structure browser pragmas query" current="1"/></window><tab_structure><column_width id="0" width="300"/><column_width id="1" width="0"/><column_width id="2" width="150"/><column_width id="3" width="2218"/><column_width id="4" width="0"/><expanded_item id="0" parent="1"/><expanded_item id="1" parent="1"/><expanded_item id="2" parent="1"/><expanded_item id="3" parent="1"/></tab_structure><tab_browse><current_table name="4,16:maincoworking_spaces"/><default_encoding codec=""/><browse_table_settings><table schema="main" name="coworking_spaces" show_row_id="0" encoding="" plot_x_axis="" unlock_view_pk="_rowid_"><sort/><column_widths><column index="1" value="139"/><column index="2" value="300"/><column index="3" value="300"/><column index="4" value="300"/><column index="5" value="300"/><column index="6" value="299"/><column index="7" value="265"/><column index="8" value="199"/><column index="9" value="169"/><column index="10" value="300"/></column_widths><filter_values/><conditional_formats/><row_id_formats/><display_formats/><hidden_columns/><plot_y_axes/><global_filter/></table></browse_table_settings></tab_browse><tab_sql><sql name="SQL 1">DELETE FROM coworking_spaces WHERE Name = 'Name';

-</sql><current_tab id="0"/></tab_sql></sqlb_project>
diff --git a/framework.css b/framework.css
deleted file mode 100644
index 54483b2d0143f2afdf57b22ebe17e9ee501b3bd8..0000000000000000000000000000000000000000
--- a/framework.css
+++ /dev/null
@@ -1,13 +0,0 @@
-body{
-  background-color: white;
-  color: black;
-}
-
-header{
-  background-color: white;
-  color: black;
-  display: block;
-  margin-left: auto;
-  margin-right: auto;
-  float: center;
-}
diff --git a/main.py b/main.py
deleted file mode 100644
index 0dddeee152d80f3d863fa68e1706595ab0ba7f4e..0000000000000000000000000000000000000000
--- a/main.py
+++ /dev/null
@@ -1,42 +0,0 @@
-from flask import Flask, request, render_template, redirect
-
-import sqlite3
-app = Flask(__name__)
-DATABASE = "db.db"
-ALLOWED_EXTENSIONS = set(['txt', 'pdf', 'png', 'jpg', 'jpeg', 'gif'])
-
-
-@app.route("/Load/CodeBase")
-def Load():
-			Name = "Codebase";
-			conn = sqlite3.connect(DATABASE)
-			cur = conn.cursor()
-			print(Name)
-		#	getAddress(Name)
-			cur.execute("SELECT * FROM 'coworking_spaces' WHERE Name =?;", [Name])
-			data = cur.fetchall()
-			print(data)
-		#	cur.execute("SELECT Address FROM coworking_spaces WHERE Name =? ;", [Name])
-		#	Address = cur.fetchall()
-		#	print(Address)
-		#	cur.execute("SELECT Main_Photo FROM coworking_spaces WHERE Name =? ;", [Name])
-		#	Main_Photo = cur.fetchall()
-		#	print(Main_Photo)
-		#	cur.execute("SELECT Additional_photos FROM coworking_spaces WHERE Name =? ;", [Name])
-		#	Additional_photos = cur.fetchall()
-		#	print(Additional_photos)
-		#	cur.execute("SELECT Description FROM coworking_spaces WHERE Name =? ;", [Name])
-		#	Description = cur.fetchall()
-		#	print(Description)
-		#	cur.execute("SELECT Website FROM coworking_spaces WHERE Name =? ;", [Name])
-		#	Website = cur.fetchall()
-		#	print(Website)
-		#	cur.execute("SELECT Opening_Hours FROM coworking_spaces WHERE Name =? ;", [Name])
-		#	Opening_Hours = cur.fetchall()
-		#	print(Opening_Hours)
-			conn.close()
-			return render_template('Space.html', data = data)
-			# pageAddress = Address, pageMain_Photo = Main_Photo, pageAdditional_photos = Additional_photos, pageDescription = Description, pageWebsite = Website, pageOpening_Hours = Opening_Hours  )
-
-if __name__ == "__main__":
-	app.run(debug=True)
diff --git a/project_server.py b/project_server.py
index accf4547fa5d9799237d55dce9a25589c3a09f48..24fb47d12fe4a57c34e3636c54abc43c4b55352c 100644
--- a/project_server.py
+++ b/project_server.py
@@ -27,6 +27,39 @@ def returnManageCoworkingSpaces():
     if (request.method == 'GET'):
         return render_template("Manage_Coworking_Spaces.html")
 
+@app.route("/Load/CodeBase")
+def Load():
+			Name = "Codebase";
+			conn = sqlite3.connect(DATABASE)
+			cur = conn.cursor()
+			print(Name)
+		#	getAddress(Name)
+			cur.execute("SELECT * FROM 'coworking_spaces' WHERE Name =?;", [Name])
+			data = cur.fetchall()
+			print(data)
+		#	cur.execute("SELECT Address FROM coworking_spaces WHERE Name =? ;", [Name])
+		#	Address = cur.fetchall()
+		#	print(Address)
+		#	cur.execute("SELECT Main_Photo FROM coworking_spaces WHERE Name =? ;", [Name])
+		#	Main_Photo = cur.fetchall()
+		#	print(Main_Photo)
+		#	cur.execute("SELECT Additional_photos FROM coworking_spaces WHERE Name =? ;", [Name])
+		#	Additional_photos = cur.fetchall()
+		#	print(Additional_photos)
+		#	cur.execute("SELECT Description FROM coworking_spaces WHERE Name =? ;", [Name])
+		#	Description = cur.fetchall()
+		#	print(Description)
+		#	cur.execute("SELECT Website FROM coworking_spaces WHERE Name =? ;", [Name])
+		#	Website = cur.fetchall()
+		#	print(Website)
+		#	cur.execute("SELECT Opening_Hours FROM coworking_spaces WHERE Name =? ;", [Name])
+		#	Opening_Hours = cur.fetchall()
+		#	print(Opening_Hours)
+			conn.close()
+			return render_template('Space.html', data = data)
+			# pageAddress = Address, pageMain_Photo = Main_Photo, pageAdditional_photos = Additional_photos, pageDescription = Description, pageWebsite = Website, pageOpening_Hours = Opening_Hours  )
+
+
 @app.route("/SearchRecord", methods=['POST', 'GET'])
 def searchRecord():
 
diff --git a/spaces.js b/spaces.js
deleted file mode 100644
index 31f838833a1735bac58d9f046f07a96b758e237b..0000000000000000000000000000000000000000
--- a/spaces.js
+++ /dev/null
@@ -1,53 +0,0 @@
-function SpacesLoad() {
-  document.getElementById('nextButton').addEventListener('click',loadValidatedQuestion);
-}
-
-// Loads an validated question when called.
-function loadpaceInfo() {
-  var xhttp = new XMLHttpRequest();
-  xhttp.open("PUT", '/LoadValidatedQuestion', true);
-  xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
-  xhttp.onreadystatechange = function() {
-    if (xhttp.readyState === 4 && xhttp.status === 200) {
-      console.log(xhttp.responseText);
-      // Below is the message to output onto the Question Validation page,
-      // after it has been approved or rejected by a moderator.
-      document.getElementById("quizText").innerHTML = xhttp.responseText;
-    } else {
-//      console.error(`Status Text: ${xhttp.statusText}.`);
-//      console.error(`Ready State: ${xhttp.readyState}.`);
-    }
-  };
-  xhttp.send();
-}
-
-// Function to call multiple functions.
-function quizLoad() {
-  onQuizPageLoad();
-  loadValidatedQuestion();
-}
-
-function submitAnswer(e) {
-  // Removes the standard form processing.
-  e.preventDefault();
-  e.stopPropagation();
-  var quizText = document.getElementById("quizText").textContent;
-  var quizAnswer = document.forms["quizForm"]["quizAnswer"].value;
-  params = 'quizText='+quizText+'&quizAnswer='+quizAnswer;
-  var xhttp = new XMLHttpRequest();
-  xhttp.open("POST", '/SubmitAnswer', true);
-  xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
-  xhttp.onreadystatechange = function() {
-    if (xhttp.readyState === 4 && xhttp.status === 200) {
-//      console.log(xhttp.responseText);
-      // Below is the message to output onto the Question Validation page,
-      // after it has been approved or rejected by a moderator.
-      document.getElementById("DEBUGserverMessage").innerHTML = xhttp.responseText;
-      loadValidatedQuestion()
-    } else {
-//      console.error(`Status Text: ${xhttp.statusText}.`);
-//      console.error(`Ready State: ${xhttp.readyState}.`);
-    }
-  };
-  xhttp.send(params);
-}
diff --git a/static/testSearch.html b/static/testSearch.html
deleted file mode 100644
index c650c9571f95d963737d8f77a5b7ac5834a448f9..0000000000000000000000000000000000000000
--- a/static/testSearch.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<head>
-	<link rel="stylesheet" href="framework.css">
-</head>
-
-<body class="body">
-
-<header>
-
-  <li><a href="/Load/CodeBase">view CodeBase</a></li>
-
-</header>
diff --git a/templates/test.html b/templates/test.html
deleted file mode 100644
index 1a4bf463bb740559d292fedbe9529176cd2c941e..0000000000000000000000000000000000000000
--- a/templates/test.html
+++ /dev/null
@@ -1,4 +0,0 @@
-{%extends "base_template.html"%}
-{%block mainblock%}
-  test
-{%endblock%}