view webapp/src/main/webapp/digilib-login.html @ 1158:2ee261676828 default tip

better out-of-the box experience: * digilib works without config files using sensible defaults * new sample images folder used by default * config files moved to templates
author robcast
date Tue, 19 Feb 2013 17:32:25 +0100
parents 7779b37d1d05
children
line wrap: on
line source

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html> <head>
<title>Login to digilib</title>
</head>

<body>

<h2>This document requires authentication</h2>

<p>Please enter the name and the password to access this document.<p>

<form method=POST action=j_security_check>
<table>
  <tr>
    <td>Name:</td>
    <td><input type="text" name="j_username"></td>
  </tr>
  <tr>
    <td>Password:</td>
    <td><input type="password" name="j_password"></td>
  </tr>
  <tr>
    <td></td>
    <td><input type="SUBMIT" value="  OK  "></td>
  </tr>
  </table>
</form>

</body>
</html>