Project

General

Profile

1
<!--
2
  * login.html
3
  *
4
  *      Authors: Jivka Bojilova
5
  *    Copyright: 2000 Regents of the University of California and the
6
  *               National Center for Ecological Analysis and Synthesis
7
  *  For Details: http://www.nceas.ucsb.edu/
8
  *      Created: 2000 June 26
9
  *      Version: 0.01
10
  *    File Info: '$Id: login.html 348 2000-08-14 20:43:27Z jones $'
11
  * 
12
  * This is an HTML document for login to MetaCat
13
-->
14
<HTML>
15
<HEAD>
16
<TITLE>MetaCat</TITLE>
17
<script language="JavaScript">
18
   function PutFocus(theForm) {
19
	theForm.username.focus()
20
   }
21
</script>
22
</HEAD>
23
<BODY bgcolor="#FFFFFF" onLoad="PutFocus(document.forms[0]);">
24

    
25
  <P>&nbsp;
26

    
27
  <FORM ACTION="@servlet-path@" METHOD="POST">
28
    <INPUT TYPE="hidden" NAME="action" VALUE="Login">
29
    <P>Username &nbsp;&nbsp;&nbsp;
30
    <INPUT TYPE="text" NAME="username" SIZE="15">
31
    <P>Password &nbsp;&nbsp;&nbsp;
32
    <INPUT TYPE="password" NAME="password" SIZE="15">&nbsp;&nbsp;&nbsp;
33
    <INPUT TYPE="submit" VALUE=" Login ">
34
  </FORM>
35

    
36
</BODY>
37
</HTML>
(5-5/15)