aboutsummaryrefslogtreecommitdiffstats
path: root/Web/Server/templates/index.html
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2022-02-15 09:26:36 -0600
committerMatt Strapp <matt@mattstrapp.net>2022-02-15 09:26:36 -0600
commit5cbc879c60b3bafe29e8f07f82e2f34b55d81a48 (patch)
treedd575c40e1f704c18912e90b5d0041074722173c /Web/Server/templates/index.html
parentMake HTTP link not wrong (diff)
downloadee4511w-5cbc879c60b3bafe29e8f07f82e2f34b55d81a48.tar
ee4511w-5cbc879c60b3bafe29e8f07f82e2f34b55d81a48.tar.gz
ee4511w-5cbc879c60b3bafe29e8f07f82e2f34b55d81a48.tar.bz2
ee4511w-5cbc879c60b3bafe29e8f07f82e2f34b55d81a48.tar.lz
ee4511w-5cbc879c60b3bafe29e8f07f82e2f34b55d81a48.tar.xz
ee4511w-5cbc879c60b3bafe29e8f07f82e2f34b55d81a48.tar.zst
ee4511w-5cbc879c60b3bafe29e8f07f82e2f34b55d81a48.zip
Use newer web interface
Diffstat (limited to 'Web/Server/templates/index.html')
-rw-r--r--Web/Server/templates/index.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/Web/Server/templates/index.html b/Web/Server/templates/index.html
deleted file mode 100644
index 6f7e738..0000000
--- a/Web/Server/templates/index.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
- <div id="upload">
- <h2>Upload a python file onto the inverted pendulum</h2>
- <p>
- {% if error %}
- <h2>{{ error }}</h2>
- {% endif %}
- </p>
-
- <form method="post" action="/upload" enctype="multipart/form-data">
- <dl>
- <p>
- <input id="choose_file" type="file" name="file" autocomplete="off" required>
- </p>
- </dl>
- <p>
- <input id="submit" type="submit" value="Submit"> <!-- onclick="showLoad()"> -->
- </p>
- </form>
- </div>
-
- <div id="running"></div>
-
-{% endblock %}