Show correct text on dashboard page depending on login status

This commit is contained in:
NovaFox161
2020-03-10 23:52:18 -05:00
parent cb5a8a8d51
commit 3d6f6f4abd

View File

@@ -223,9 +223,13 @@
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<h1 class="h3 mb-0 text-discal-blue">Dashboard</h1>
</div>
<p class="text-center text-discord-full-white">Please select a guild from the side
panel to begin.</p>
<div th:if="${logged_in}">
<p class="text-center text-discord-full-white">Please select a guild from the
side panel to begin.</p>
</div>
<div th:unless="${$logged_in}">
<p class="text-center text-discord-full-white">Please log in to continue.</p>
</div>
</div>
<!--Snackbar for notification popup-->