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 497 2000-10-06 01:50:50Z jones $'
11
  * 
12
  * This is an HTML document for login to MetaCat
13
-->
14
<HTML>
15
<HEAD>
16
<TITLE>MetaCat</TITLE>
17
<link rel="stylesheet" type="text/css" href="@html-path@/style/rowcol.css">
18
<script language="JavaScript">
19
   function PutFocus(theForm) {
20
	theForm.username.focus()
21
   }
22
</script>
23
</HEAD>
24
<BODY class="emlbody" onLoad="PutFocus(document.forms[0]);">
25

    
26
  <P>&nbsp;
27

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

    
37
</BODY>
38
</HTML>
(5-5/16)