From 20f9ea9141f77b3c21232efc30202408d535de18 Mon Sep 17 00:00:00 2001
From: Dat Nguyen
Date: Thu, 21 Nov 2019 13:45:20 -0600
Subject: working web stuff with running page
---
Web/Server/templates/index.html | 43 ++++++++++++++++++++++++++++++++++++++++
Web/Server/templates/upload.html | 37 ----------------------------------
2 files changed, 43 insertions(+), 37 deletions(-)
create mode 100644 Web/Server/templates/index.html
delete mode 100644 Web/Server/templates/upload.html
(limited to 'Web/Server/templates')
diff --git a/Web/Server/templates/index.html b/Web/Server/templates/index.html
new file mode 100644
index 0000000..70a282b
--- /dev/null
+++ b/Web/Server/templates/index.html
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+ ANDI'S PIE
+
+
Select a file to upload
+
+ {% with messages = get_flashed_messages() %}
+ {% if messages %}
+
+ {% for message in messages %}
+ - {{ message }}
+ {% endfor %}
+
+ {% endif %}
+ {% endwith %}
+
+
+
+
+
+
+
+ {% if results %}
+
+ {% endif %}
+
+
+
\ No newline at end of file
diff --git a/Web/Server/templates/upload.html b/Web/Server/templates/upload.html
deleted file mode 100644
index 38c4a09..0000000
--- a/Web/Server/templates/upload.html
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
- Python Flask File Upload Example
- Select a file to upload
-
- {% with messages = get_flashed_messages() %}
- {% if messages %}
-
- {% for message in messages %}
- - {{ message }}
- {% endfor %}
-
- {% endif %}
- {% endwith %}
-
-
-
- {% if results %}
-
- {% endif %}
-
-
\ No newline at end of file
--
cgit v1.2.3