From a0cd518177c97e964138bbacff3077742b6d9ff7 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Thu, 17 Feb 2005 11:57:09 +0000 Subject: [PATCH] Print a little "Logging in..." blurb. --- web/root/login.ssjs | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/web/root/login.ssjs b/web/root/login.ssjs index fd493d7997..b1ee8d38a1 100644 --- a/web/root/login.ssjs +++ b/web/root/login.ssjs @@ -2,9 +2,12 @@ if(user.number==0) { http_reply.status='401 Premission Denied'; http_reply.header["WWW-Authenticate"]='Basic realm="'+system.name+'"'; } -write('<html><head>'); -write('<meta http-equiv="Pragma" content="no-cache">'); -write('<meta http-equiv="expires" content="0">'); -write('<meta http-equiv="refresh" content="0; URL=../index.ssjs">'); -write('</head></html>'); +writeln('<html>'); +writeln('<head>'); +writeln('<meta http-equiv="Pragma" content="no-cache">'); +writeln('<meta http-equiv="expires" content="0">'); +writeln('<meta http-equiv="refresh" content="0; URL=../index.ssjs">'); +writeln('</head>'); +writeln('<body>Logging in...</body>'); +writeln('</html>'); -- GitLab