From 374ca77b2a7a093537515607d5f10226fef06e29 Mon Sep 17 00:00:00 2001 From: Dat Nguyen Date: Fri, 29 Nov 2019 21:59:28 -0600 Subject: some aesthetics --- Web/Server/templates/index.html | 69 +++++++++++++++++------------------------ 1 file changed, 29 insertions(+), 40 deletions(-) (limited to 'Web/Server/templates/index.html') diff --git a/Web/Server/templates/index.html b/Web/Server/templates/index.html index 70a282b..1350fdd 100644 --- a/Web/Server/templates/index.html +++ b/Web/Server/templates/index.html @@ -1,43 +1,32 @@ - - - - - - - ANDI'S PIE -
-

Select a file to upload

-

- {% with messages = get_flashed_messages() %} - {% if messages %} -

- {% endif %} - {% endwith %} -

- -
-
-

- -

-
+{% extends "base.html" %} + +{% block content %} +
+

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 +{% endblock %} -- cgit v1.2.3