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 %} +
+
+
+
+
+ + +