<%@page import="at.gv.egovernment.moa.id.configuration.helper.LanguageHelper"%>

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
	<head>
		<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
		<link rel="stylesheet" type="text/css" href="css/index.css">
		<title><%=LanguageHelper.getGUIString("title", request) %></title>
	</head>
	
	<body>
		<h1><%=LanguageHelper.getGUIString("webpages.index.header", request) %></h1>
				
		<div id="information_area">
		
			<s:if test="hasActionMessages()">
   			<div id="message_area">
   				<label><%=LanguageHelper.getGUIString("message.title", request) %></label>
      			<s:actionmessage/>
   			</div>
			</s:if>	
		
			<s:if test="hasActionErrors()">
   			<div id="error_area">
   				<label><%=LanguageHelper.getGUIString("error.title", request) %></label>
    			<s:actionerror/>
   			</div>
			</s:if>	
		
		<div id="information_area">
			<p><%=LanguageHelper.getGUIString("webpages.index.desciption.head", request) %></p>
			
			<div class="oa_config_block">
				
					<s:form id="passwordlogin" namespace="/" method="POST" enctype="multipart/form-data">
				
							<s:textfield name="username" 
								value="%{username}" 
								labelposition="left"
								key="webpages.edituser.username"
								cssClass="textfield_mail"
								maxlength="16">
							</s:textfield>
								
							<s:password name="password"  
								labelposition="left"
								key="webpages.edituser.password"
								cssClass="textfield_mail"
								maxlength="16">
							</s:password>
							
							<s:submit key="webpages.index.login" action="authenticate"/>		
							
					</s:form>
				
					<s:if test="isPvp2LoginActiv()">	
						<div id="bkulogin">
							<a id="bkuloginbutton" href="servlet/pvp2login"><%=LanguageHelper.getGUIString("webpages.index.login.pvp2", request) %></a>
						</div>
					</s:if>						
			</div>
						
		</div>
		
	</body>
</html>