cas-service-ja/overlays/org.apereo.cas.cas-server-w.../WEB-INF/classes/templates/protocol/casPostResponseView.html

18 lines
618 B
HTML
Raw Normal View History

2024-10-20 17:44:40 +08:00
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<body onload="document.acsForm.submit();" style="display:none">
<form name="acsForm" th:action="${originalUrl}" method="post">
<span th:each="entry : ${parameters}" th:remove="tag">
<input type="hidden" th:name="${entry.key}" th:value="${entry.value}"/>
</span>
<noscript>
<p th:text="#{screen.post.response.message(${originalUrl})}"/>
<p><input type="submit" th:value="#{screen.button.continue}"/></p>
</noscript>
</form>
</body>
</html>