casPostResponseView.html 618 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
  3. <body onload="document.acsForm.submit();" style="display:none">
  4. <form name="acsForm" th:action="${originalUrl}" method="post">
  5. <span th:each="entry : ${parameters}" th:remove="tag">
  6. <input type="hidden" th:name="${entry.key}" th:value="${entry.value}"/>
  7. </span>
  8. <noscript>
  9. <p th:text="#{screen.post.response.message(${originalUrl})}"/>
  10. <p><input type="submit" th:value="#{screen.button.continue}"/></p>
  11. </noscript>
  12. </form>
  13. </body>
  14. </html>