summaryrefslogtreecommitdiffstats
path: root/www/login.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'www/login.cgi')
-rwxr-xr-xwww/login.cgi49
1 files changed, 49 insertions, 0 deletions
diff --git a/www/login.cgi b/www/login.cgi
new file mode 100755
index 0000000..33be150
--- /dev/null
+++ b/www/login.cgi
@@ -0,0 +1,49 @@
+#!/usr/bin/haserl
+Content-Type: text/html;charset=UTF-8
+Pragma: no-cache
+Cache-Control: no-cache
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+ <head>
+ <title>Internet User Authentication Required</title>
+ <link rel="stylesheet" type="text/css" href="/static/style.css" />
+ </head>
+ <body>
+ <div><img id="warning" src="/static/warning.png" alt="Warning sign" /></div>
+ <div id="outer_container">
+ <div id="inner_container">
+ <h1>Internet User Authentication Required</h1>
+ <p>
+ User authentication is required to access the Internet. Please,
+ provide your credentials to login.
+ </p>
+ <%
+ if [ "$GET_REASON" = "fail" ]; then
+ echo -n "<p><font color = "#990000">Incorrect user name or password. Please try again.</font></p>"
+ fi
+ %>
+ <p>
+ <form action="do-login.cgi" method="post">
+ <input type="hidden" name="DENIEDURL" value="<% echo -n "$GET_DENIEDURL" %>" />
+ <table>
+ <tr>
+ <td>User name:</td>
+ <td><input type="input" name="username" /></td>
+ </tr>
+ <tr>
+ <td>Password:</td>
+ <td><input type="password" name="password" /></td>
+ </tr>
+ <tr>
+ <td />
+ <td><input type="submit" value="Logon" method="get" /><td/>
+ </tr>
+ </table>
+ </form>
+ </p>
+ </div>
+ </div>
+ </body>
+</html>
+