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 508 2000-10-31 22:29:46Z bojilova $'
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
    <INPUT TYPE="hidden" NAME="qformat" VALUE="html">
31
    <P>Username &nbsp;&nbsp;&nbsp;
32
    <INPUT TYPE="text" NAME="username" SIZE="15">
33
    <P>Password &nbsp;&nbsp;&nbsp;
34
    <INPUT TYPE="password" NAME="password" SIZE="15">&nbsp;&nbsp;&nbsp;
35
    <INPUT TYPE="submit" VALUE=" Login ">
36
  </FORM>
37

    
38
</BODY>
39
</HTML>
(5-5/15)