Skip to content
Snippets Groups Projects
Select Git revision
  • e73b2d75964d1c852af89082c31e4a1def0548ba
  • master default
  • renovate/junit-jupiter-engine.version
  • renovate/opencsv.version
  • renovate/org.springframework.boot-spring-boot-starter-parent-3.x
  • renovate/testcontainer.version
  • renovate/jgit.version
  • renovate/selenium.version
  • renovate/datatables.version
  • renovate/jacoco-maven-plugin.version
  • renovate/org.apache.maven.plugins-maven-surefire-plugin-3.x
  • demo
  • v1_8_1
  • v2.18.0
  • v2.17.2
  • v2.17.1
  • v2.17.0
  • v2.16.1
  • v2.16.0
  • v2.15.1
  • v2.15.0
  • v2.14.0
  • v2.13.0
  • v2.12.0
  • v2.11.0
  • v2.10.0
  • v2.9.2
  • v2.9.1
  • v2.9.0
  • v2.8.0
  • testPipeline2
  • v2.7.0
  • v2.6.1
33 results

settingsContainer.ftl

Blame
  • settingsContainer.ftl 743 B
    <#import "/spring.ftl" as s>
    
    <#macro settingsContainer formName containerId importScripts actionUrl>
        <form name="${formName}" method="post" action="<@s.url actionUrl/>">
            <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}" id="token"/>
    
            <#nested>
        </form>
    
        <div class="hidden securityContainerToastContent">
            <#if toastContent??>${toastContent}</#if>
        </div>
    
        <#if importScripts>
            <script src="<@s.url '/webjars/jquery/3.7.1/jquery.min.js'/>"></script>
            <script src="<@s.url '/webjars/materializecss/1.0.0/js/materialize.min.js'/>"></script>
            <script>
                initSettingsContainer('${formName}', '${containerId}');
            </script>
        </#if>
    </#macro>