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 311 2000-08-02 23:26:35Z bojilova $'
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.Go.focus()
20
   }
21
</script>
22
</HEAD>
23
<BODY bgcolor="#FFFFFF" onLoad="PutFocus(document.forms[0]);">
24

    
25
  <P>&nbsp;
26

    
27
  <FORM ACTION="/servlets/MetaCatServlet" METHOD="POST">
28
    Login as "anonymous" user in <b>MetaCat</b>
29
    <INPUT TYPE="hidden" NAME="action" VALUE="Login">
30
    <INPUT TYPE="hidden" NAME="username" VALUE="anonymous">
31
    <INPUT TYPE="hidden" NAME="password">
32
    <INPUT TYPE="submit" NAME="Go" VALUE=" Go ">
33
  </FORM>
34

    
35
  <HR WIDTH="300" ALIGN="left">
36

    
37
  <FORM ACTION="/servlets/MetaCatServlet" METHOD="POST">
38
    Login as registered user in <b>MetaCat</b>
39
    <INPUT TYPE="hidden" NAME="action" VALUE="Login">
40
    <P>Username &nbsp;&nbsp;&nbsp;
41
    <INPUT TYPE="text" NAME="username" SIZE="15">
42
    <P>Password &nbsp;&nbsp;&nbsp;
43
    <INPUT TYPE="password" NAME="password" SIZE="15">&nbsp;&nbsp;&nbsp;
44
    <INPUT TYPE="submit" VALUE=" Login ">
45
  </FORM>
46

    
47
</BODY>
48
</HTML>
(5-5/14)