<html>
<head>
<title>MOA ID Auth Sample Login</title>
</head>
<body>
<% 
  String urlPath = 
	request.getScheme() + "://" 
	+ request.getServerName() + ":" + request.getServerPort() 
	+ request.getContextPath() + "/";
  String params =
	"Target=gb&" + 
	"OA=https://localhost:8443/moa-id-proxy/index.jsp";
  String urlStartAuth =
  	urlPath +
	"StartAuthentication?" + 
	params;
  String templateParam =
    "&Template=http://localhost:18080/oa/AuthTemplate.jsp";
  String urlStartAuthCustom =
    urlStartAuth +
    templateParam;
  String urlSelectBKU = 
  	urlPath +
  	"SelectBKU?" +
  	params;
  String urlSelectBKUCustom = 
  	urlSelectBKU +
  	templateParam +
  	"&BKUSelectionTemplate=http://localhost:18080/oa/BKUSelectionTemplate.jsp";
%>
<a href="<%=urlStartAuth%>">Log in to sample application</a>
<br>
<a href="<%=urlStartAuthCustom%>">Log in to sample application using custom form</a>
<br>
<a href="<%=urlSelectBKU%>">Choose BKU (HTMLComplete or HTMLSelect) and log in</a>
<br>
<a href="<%=urlSelectBKUCustom%>">Choose BKU (HTMLSelect) using custom form and log in</a>
</body>
</html>