Skip to content
Snippets Groups Projects
Commit a0cd5181 authored by rswindell's avatar rswindell
Browse files

Print a little "Logging in..." blurb.

parent 8b05dd49
No related branches found
No related tags found
No related merge requests found
...@@ -2,9 +2,12 @@ if(user.number==0) { ...@@ -2,9 +2,12 @@ if(user.number==0) {
http_reply.status='401 Premission Denied'; http_reply.status='401 Premission Denied';
http_reply.header["WWW-Authenticate"]='Basic realm="'+system.name+'"'; http_reply.header["WWW-Authenticate"]='Basic realm="'+system.name+'"';
} }
write('<html><head>'); writeln('<html>');
write('<meta http-equiv="Pragma" content="no-cache">'); writeln('<head>');
write('<meta http-equiv="expires" content="0">'); writeln('<meta http-equiv="Pragma" content="no-cache">');
write('<meta http-equiv="refresh" content="0; URL=../index.ssjs">'); writeln('<meta http-equiv="expires" content="0">');
write('</head></html>'); writeln('<meta http-equiv="refresh" content="0; URL=../index.ssjs">');
writeln('</head>');
writeln('<body>Logging in...</body>');
writeln('</html>');
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment