diff options
-rw-r--r-- | swat/login.esp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/swat/login.esp b/swat/login.esp index 9b41e2d54e..fba1c544dc 100644 --- a/swat/login.esp +++ b/swat/login.esp @@ -1,6 +1,11 @@ <% page_header("plain", "SWAT Login"); %> <% + +if (request['SESSION_EXPIRED'] == "True") { + write("<b>Your session has expired - please authenticate again<br>\n"); +} + var f = Form("login", 2, 1); f.element[0].label = "Username"; f.element[0].value = form['Username']; |