<%--
 * Copyright by Intland Software
 *
 * All rights reserved.
 *
 * This software is the confidential and proprietary information
 * of Intland Software. ("Confidential Information"). You
 * shall not disclose such Confidential Information and shall use
 * it only in accordance with the terms of the license agreement
 * you entered into with Intland.
 *
 * $Revision$ $Date$
--%>
<meta name="decorator" content="main">
<meta name="module" content="login">
<meta name="moduleCSSClass" content="loginModule">
<meta name="stylesheet" content="workspace.css">


<%@ taglib uri="jstl-c" prefix="c" %>
<%@ taglib uri="jstl-fmt" prefix="fmt" %>


<%@ taglib uri="struts-html" prefix="html" %>

<%@ taglib uri="taglib" prefix="tag" %>
<%@ taglib uri="uitaglib" prefix="ui" %>

<ui:actionMenuBar>
	<span class="titlenormal">Login</span>
</ui:actionMenuBar>

<table border="0" cellpadding="0" cellspacing="0">

<tr><td align="center">
	<html:errors />
</td></tr>

<c:if test="${!empty loginForm.map.message}">
	<tr><td>
		<fmt:message key="errors.header" />
		<c:out value="${loginForm.map.message}" escapeXml="false" />
		<fmt:message key="errors.footer" />
	</td></tr>

	<tr><td>&nbsp;</td></tr>
</c:if>

<fmt:bundle basename="com.intland.codebeamer.utils.Bundle">
	<fmt:message var="loginText" key="login.text" />
	<fmt:message var="loginTextFormat" key="login.format" />
</fmt:bundle>

<tr>
	<td align="center"><jsp:include flush="true" page="login.jsp" /></td>
</tr>

<tr>
	<td height="20"></td>
</tr>

<c:if test="${!empty loginText}">
	<TR>
		<TD><tag:transformText value="${loginText}" format="${loginTextFormat}" /></TD>
	</TR>
</c:if>

</table>
