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

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

parent 8b05dd49
Branches
Tags
No related merge requests found
......@@ -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>');
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment