casLoginMessageView.jsp 581 字节
Newer Older
N
Nicky 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<jsp:directive.include file="includes/top.jsp" />

<div id="msg" class="warn">
  <h2>Authentication Succeeded with Warnings</h2>

<c:forEach items="${messages}" var="message">
  <p class="message">${message.text}</p>
</c:forEach>

</div>

<c:url value="login" var="url">
  <c:param name="execution" value="${flowExecutionKey}" />
  <c:param name="_eventId" value="proceed" />
</c:url>

<div id="big-buttons">
 <a class="button" href="${url}">Continue</a>
</div>

<jsp:directive.include file="includes/bottom.jsp" />