Project

General

Profile

1
<%@ page language="java" %> 
2
<%@ page import="edu.ucsb.nceas.metacat.util.OrganizationUtil,edu.ucsb.nceas.metacat.properties.PropertyService" %>
3
<% 
4
/**
5
 *  '$RCSfile$'
6
 *    Copyright: 2008 Regents of the University of California and the
7
 *               National Center for Ecological Analysis and Synthesis
8
 *  For Details: http://www.nceas.ucsb.edu/
9
 *
10
 *   '$Author: walker $'
11
 *     '$Date: 2013-09-17 16:17:55 -0700 (Tue, 17 Sep 2013) $'
12
 * '$Revision: 8222 $'
13
 * 
14
 * This program is free software; you can redistribute it and/or modify
15
 * it under the terms of the GNU General Public License as published by
16
 * the Free Software Foundation; either version 2 of the License, or
17
 * (at your option) any later version.
18
 *
19
 * This program is distributed in the hope that it will be useful,
20
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
 * GNU General Public License for more details.
23
 *
24
 * You should have received a copy of the GNU General Public License
25
 * along with this program; if not, write to the Free Software
26
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27
 */
28
%>
29

    
30
<% 
31
	Vector<String> adminList = (Vector<String>)request.getAttribute("adminList");;
32
%>
33

    
34
<html>
35
<head>
36

    
37
<title>Database Install/Upgrade Utility</title>
38
<link rel="stylesheet" type="text/css" 
39
        href="<%= request.getContextPath() %>/admin/admin.css"></link>
40
<script language="JavaScript" type="text/JavaScript" src="<%= request.getContextPath() %>/admin/admin.js"></script>
41

    
42
</head>
43
<body>
44
<%@ include file="./header-section.jsp"%>
45
	
46
<div class="document">
47
	<h2>Administrator Login</h2>
48
	
49
	<p>Account login page.</p>
50
	
51
	<%@ include file="./page-message-section.jsp"%>
52
	
53
	<form name="loginform" method="post" action="<%= request.getContextPath() %>/admin"
54
		target="_top" onsubmit="return validateAndSubmitForm(this);" id="loginform">
55
	
56
	<table class="admin-login">
57
		<tr>
58
			<td><h4>Username</h4></td>
59
			<td>
60
				<select class="username-input" name="username">
61
	<%
62
				for(String adminName : adminList) {
63
	%>
64
					<option><%= adminName %></option>
65
	<%
66
		}
67
	%>
68
			    
69
			  </select>
70
			</td>
71
		</tr>
72
		<tr>
73
		    <td></td>
74
		    <td class="textinput-description">[Fully qualified administrator username]</td>
75
		</tr>
76
		<tr>
77
			<td><h4>Password</h4></td>
78
			<td><input class="login-input" name="password" type="password" maxlength="50" value=""></td>
79
		</tr>
80
		<tr>
81
		    <td></td>
82
		    <td class="textinput-description">[Administrator password]</td>
83
		</tr>
84
	</table>
85
	
86
	<div class="buttons-wrapper">
87
		<input class="button" input type="submit" name="loginAction" value="Login" class="button_login"></td>
88
		<input class="button" type="button" value="Cancel" onClick="forward('<%= request.getContextPath() %>')"> 
89
		<input type="hidden" name="configureType" value="login"/>
90
		<input type="hidden" name="processForm" value="true"/>
91
	</div>
92
	</form>
93
</div>
94
</body>
95
</html>
(1-1/19)