<%@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="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 namespace="/" method="POST" enctype="multipart/form-data">
				
							<s:textfield name="username" 
								value="%{username}" 
								labelposition="left"
								key="webpages.edituser.username"
								cssClass="textfield_long"
								maxlength="16">
							</s:textfield>
								
							<s:password name="password"  
								labelposition="left"
								key="webpages.edituser.password"
								cssClass="textfield_long"
								maxlength="16">
							</s:password>
							
							<s:submit key="webpages.index.login" action="authenticate"/>		
							
					</s:form>
			</div>
			
		</div>
		
	</body>
</html>