23 lines
681 B
Text
23 lines
681 B
Text
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<title><% response.title %></title>
|
|
<style type="text/css">
|
|
body {
|
|
background-color: #ffffff;
|
|
margin: 20px;
|
|
font: 12px <% response.fontface %>;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<% response.header prefix="<h3>" suffix="</h3>" %>
|
|
<% param.message prefix="<p style=\'color: red\'>" suffix="</p>" %>
|
|
<form name="login" method="post">
|
|
<p>Please enter the administrators username and password to proceed:</p>
|
|
<p>Username:<br /><input type="text" name="username"></p>
|
|
<p>Password:<br /><input type="password" name="password"></p>
|
|
<input type="submit" value="Authenticate">
|
|
</form>
|
|
</body>
|
|
</html>
|