diff --git a/ref-test/app/install.py b/ref-test/app/install.py
deleted file mode 100644
index 843259b..0000000
--- a/ref-test/app/install.py
+++ /dev/null
@@ -1,32 +0,0 @@
-from main import app, Config
-from .data import data
-from .modules import db
-from .tools.data import save
-from .tools.logs import write
-
-from os import mkdir, path, system
-from cryptography.fernet import Fernet
-
-from sqlalchemy_utils import database_exists, create_database
-
-def install_scripts():
- if not path.isdir(f'./{data}'): mkdir(f'./{data}')
- if not path.isdir(f'./{data}/questions'): mkdir(f'./{data}/questions')
- if not path.isfile(f'./{data}/.gitignore'):
- with open(f'./{data}/.gitignore', 'a+') as file: file.write(f'*')
- if not path.isfile(f'./{data}/config.json'): save({}, 'config.json')
- if not path.isdir(f'./{data}/logs'): mkdir(f'./{data}/logs')
- if not path.isfile(f'./{data}/logs/users.log'): write('users.log', 'Log file created.')
- if not path.isfile(f'./{data}/logs/system.log'): write('system.log', 'Log file created.')
- if not path.isfile(f'./{data}/logs/tests.log'): write('tests.log', 'Log file created.')
- if not database_exists(Config.SQLALCHEMY_DATABASE_URI):
- create_database(Config.SQLALCHEMY_DATABASE_URI)
- write('system.log', 'No database found. Creating a new database.')
- from .models import Entry, Test, User
- with app.app_context(): db.create_all()
- write('system.log', 'Creating database schema.')
- if not path.isfile(f'./{data}/.encryption.key'):
- write('system.log', 'No encryption key found. Generating new encryption key.')
- with open(f'./{data}/.encryption.key', 'wb') as key_file:
- key = Fernet.generate_key()
- key_file.write(key)
\ No newline at end of file
diff --git a/ref-test/app/quiz/templates/quiz/privacy.html b/ref-test/app/quiz/templates/quiz/privacy.html
deleted file mode 100644
index 6e02e89..0000000
--- a/ref-test/app/quiz/templates/quiz/privacy.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{% extends "quiz/components/base.html" %}
-
-{% block content %}
-
Privacy Policy
-
- This web app stores data using cookies. The web site only stores the minimum information it needs to function.
-
Site Administrators
-
-
-
For site administrators, this web site uses encrypted cookies to store data from your log-in session.
-
User information for administrators is encrypted and stored in a secure database, and are expunged when an account is deleted.
-
-
-
Test Candidates
-
-
The web site will not be trackin your log in, and all information about your test attempt will be stored on your device until you submit it to the server.
-
Data from your test, including identifying information such as your name and email address, will be recorded by the Scottish Korfball Association in order to oversee the training and qualification of referees.
-
These records will be kept for three years or until the expiration of the theory exam qualification (whichever is later), and will be expunged securely thereafter.
-
All identifying information about candidates will be encrypted and stored in a secure database.