1
13693261870
2022-09-16 58d012f11dd34564d81b4eb3a6099eb689876597
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
 
<body onload="document.acsForm.submit();">
<form name="acsForm" th:action="${originalUrl}" method="post">
<div style="display: none">
    <span th:each="entry : ${parameters}">
         <textarea rows='10' cols='80' th:name="${entry.key}" th:inline="text">[[${entry.value}]]</textarea>
    </span>
</div>
<noscript>
    <p th:text="#{screen.post.response.message(${originalUrl})}"/>
    <p><input type="submit" th:value="#{screen.button.continue}"/></p>
</noscript>
</form>
</body>
</html>