Fix issue with Spring Security config
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
<div id="modalDialogContainer">
|
||||
<p class="notice">This is step 1 of the flow embedded in a modal dialog.</p>
|
||||
<form id="step1" action="${flowExecutionUrl}" method="POST">
|
||||
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
|
||||
<button id="cancel" type="submit" name="_eventId_cancel">Cancel</button>
|
||||
<button id="next" type="submit" name="_eventId_next">Next >></button>
|
||||
<script type="text/javascript">
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<div id="modalDialogContainer">
|
||||
<p class="notice">This is step 2 of the flow embedded in a modal dialog.</p>
|
||||
<form id="step2" action="${flowExecutionUrl}" method="POST">
|
||||
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
|
||||
<button id="cancel" type="submit" name="_eventId_cancel">Cancel</button>
|
||||
<button id="previous" type="submit" name="_eventId_previous"><< Previous</button>
|
||||
<button id="finish" type="submit" name="_eventId_finish">Finish >></button>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<div id="embeddedFlow">
|
||||
<p class="notice">This is step 1 of the embedded flow</p>
|
||||
<form id="step1" action="${flowExecutionUrl}" method="POST">
|
||||
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
|
||||
<button id="cancel" type="submit" name="_eventId_cancel">Cancel</button>
|
||||
<button id="next" type="submit" name="_eventId_next">Next >></button>
|
||||
<script type="text/javascript">
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<div id="embeddedFlow">
|
||||
<p class="notice">This is step 2 of the embedded flow</p>
|
||||
<form id="step2" action="${flowExecutionUrl}" method="POST">
|
||||
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
|
||||
<button id="cancel" type="submit" name="_eventId_cancel">Cancel</button>
|
||||
<button id="previous" type="submit" name="_eventId_previous"><< Previous</button>
|
||||
<button id="finish" type="submit" name="_eventId_finish">Finish >></button>
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
xmlns:security="http://www.springframework.org/schema/security"
|
||||
xsi:schemaLocation="
|
||||
http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
|
||||
http://www.springframework.org/schema/beans/spring-beans.xsd
|
||||
http://www.springframework.org/schema/security
|
||||
http://www.springframework.org/schema/security/spring-security-3.2.xsd">
|
||||
http://www.springframework.org/schema/security/spring-security.xsd">
|
||||
|
||||
<!--
|
||||
Configure Spring Security
|
||||
|
||||
Reference in New Issue
Block a user