summaryrefslogtreecommitdiff
path: root/src/main/resources/templates/login.html
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2024-03-01 13:51:06 +0100
committerPaul-Christian Volkmer2024-03-01 13:51:06 +0100
commitfeb9f2430c0f3e73ed94f029cb6f92e7ff1eae65 (patch)
treecbbb8f405a249607ef8419db6f3d2dbe2d63ec5d /src/main/resources/templates/login.html
parent200c5338ea2d55c9008d646e8eb0462b71dc279f (diff)
feat: add config page for user role assignment
Diffstat (limited to 'src/main/resources/templates/login.html')
-rw-r--r--src/main/resources/templates/login.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/resources/templates/login.html b/src/main/resources/templates/login.html
index 4ef8ec9..75a3681 100644
--- a/src/main/resources/templates/login.html
+++ b/src/main/resources/templates/login.html
@@ -11,6 +11,7 @@
<div class="login-form">
<h2 class="centered">Anmelden</h2>
<div class="centered notification error" th:if="${param.error}">Anmeldung nicht erfolgreich</div>
+ <div class="centered notification notice" th:if="${param.expired}">Sitzung abgelaufen oder von einem Administrator beendet.</div>
<div class="centered notification success" th:if="${param.logout}">Sie haben sich abgemeldet</div>
<form method="post" th:action="@{/login}">
<input type="text" id="username" name="username" class="form-control" placeholder="Username" required="" autofocus="" />