<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@ page import = "at.gv.egovernment.moa.id.demoOA.utils.ApplicationBean" %>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

<html>
<head>
	<meta http-equiv="Content-Type\" content="text/html; charset=utf-8">
    <meta http-equiv="Content-Style-Type" content="text/css">
	<link rel="stylesheet" type="text/css" href="css/index.css">
    <title>Demo Applikation</title>
</head>
<body>
	
	<% 
	ApplicationBean bean = (ApplicationBean) request.getAttribute("answers");
	%>
	
	<div id="demonstrator_main" class="demonstrator_main_success">
					
		<div id="demonstrator_centercontent">
			<h2 id="demonstrator_contentheader" class="demonstrator_dunkel">Anmeldedaten</h2>
			<div id="demonstrator_content" class="demonstrator_hell">
			
			<% if (bean.isLogin()) {%>
						<div id="demonstrator_centercontent">
							<div class="demonstrator_logoutButton">
									<p class="logoutbuttons"><a href="index.jsp" class="logoutbuttons">LogOut</a></p>
							</div>
							
							<div id="demonstrator_loginInformation">							
								<table>
									<tr>
										<td align="right">Benutzerdaten:</td>
										<td><%= bean.getGivenName()%>&nbsp;  
											<%= bean.getFamilyName()%>&nbsp;  
											<%= bean.getDateOfBirth()%></td>
									</tr>
								</table>

			<%} else { %>
	
							<div class="demonstrator_logoutButton">
								<a href="index.jsp">LogIn</a>
							</div>
							<p><%= bean.getErrorMessage()%></p>
			<%} %>
			
											
					<div id="demonstrator_showSAMLButton" class="demonstrator_button"\>
						<input 	type="button" 
								onclick="document.getElementById('demonstrator_SAML-assertion').style.display='block';document.getElementById('demonstrator_showSAMLButton').hidden='true';document.getElementById('demonstrator_hideSAMLButton').hidden='';" 
								value='Assertion anzeigen'/>
					</div>
					<div id="demonstrator_hideSAMLButton" class="demonstrator_button" hidden>
						<input 	type="button"
								onclick="document.getElementById('demonstrator_SAML-assertion').style.display='none';document.getElementById('demonstrator_showSAMLButton').hidden='';document.getElementById('demonstrator_hideSAMLButton').hidden='true';"
								value='Assertion ausblenden'/>
					</div>
					
					<div id="demonstrator_SAML-assertion">
						<p>SAML Assertion</p>
						<form>							
							<textarea id="demonstrator_samlArea" rows="10"><%= bean.getAssertion()%></textarea>
						</form>
					</div>	
				</div>	
			</div>
		</div>		
	</div>
		
</body>
</html>