From 7d0c7df6a7d9ee2f133456f64aca930025ae66d7 Mon Sep 17 00:00:00 2001 From: SimolZimol <70102430+SimolZimol@users.noreply.github.com> Date: Mon, 18 Aug 2025 23:53:44 +0200 Subject: [PATCH] modified: templates/user_landing_page.html new file: templates/user_landing_page_corrupted.html --- templates/user_landing_page.html | 142 +++++++++---- templates/user_landing_page_corrupted.html | 231 +++++++++++++++++++++ 2 files changed, 334 insertions(+), 39 deletions(-) create mode 100644 templates/user_landing_page_corrupted.html diff --git a/templates/user_landing_page.html b/templates/user_landing_page.html index 2394dfa..651d100 100644 --- a/templates/user_landing_page.html +++ b/templates/user_landing_page.html @@ -4,25 +4,23 @@ - User Landing Page Server Icon;"> + User Landing Page + @@ -185,10 +238,21 @@ {% for guild in g.guilds %}
- Server Icon +
+ {% if guild.icon %} + Server Icon + + {% else %} +
+ {{ guild.name[0] if guild.name else 'S' }} +
+ {% endif %} +
{{ guild.name }} diff --git a/templates/user_landing_page_corrupted.html b/templates/user_landing_page_corrupted.html new file mode 100644 index 0000000..2923e48 --- /dev/null +++ b/templates/user_landing_page_corrupted.html @@ -0,0 +1,231 @@ + + + + + + + User Landing Page Server Icon"); +
+ + + + + + {% include 'navigation.html' %} +
+
+
+
+
+

+ Welcome, {{ g.user_info['username'] }}! +

+

Select a server to view your server-specific data and statistics.

+
+ +
+ {% if g.guilds %} + {% for guild in g.guilds %} +
+
+ Server Icon +
+
+ {{ guild.name }} +
+

+ Access your dashboard, statistics, and achievements for {{ guild.name }}. +

+ +
+
+
+ {% endfor %} + {% else %} +
+
+ +

No Servers Found

+

You don't have access to any servers with this bot. Join a server with Multus Bot to get started!

+
+
+ {% endif %} +
+
+
+
+
+ + +