From 4623e014a5f7f476eb3e3dedfa40583165779c29 Mon Sep 17 00:00:00 2001 From: Steve Dogiakos Date: Tue, 1 Apr 2025 18:33:06 -0600 Subject: [PATCH] Add scrolling marquee for guest entries - Update index.html to include a fixed, horizontally scrolling marquee at the bottom. - Use CSS keyframes to animate guest entries, showing first name and location. - Enhance user interface by providing a dynamic display of entries. --- templates/index.html | 94 +++++++++++++++++++++++++++++++++----------- 1 file changed, 72 insertions(+), 22 deletions(-) diff --git a/templates/index.html b/templates/index.html index 93d598a..6c10d9d 100644 --- a/templates/index.html +++ b/templates/index.html @@ -3,36 +3,86 @@ + Museum Visitor Guestbook + + + -

Museum Visitor Guestbook

- {% if error %} -
{{ error }}
- {% endif %} -
-
-

+
+

Museum Visitor Guestbook

-
-

+ {% if error %} + + {% endif %} -
-

+ +
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
-
-

+ +
+
+ {% for guest in guests %} + + {{ guest[0] }} from {{ guest[1] }} + + {% endfor %} +
+
- - -
-

Guest Entries

- + + + \ No newline at end of file