| 1 | {include file='header'} |
| 2 | |
| 3 | <section class="section"> |
| 4 | <header class="sectionHeader"> |
| 5 | <h2 class="sectionTitle">{lang}wcf.global.next{/lang}</h2> |
| 6 | </header> |
| 7 | |
| 8 | <p>{lang}wcf.global.next.description{/lang}</p> |
| 9 | |
| 10 | <form method="post" action="install.php"> |
| 11 | <div class="formSubmit"> |
| 12 | <input type="hidden" name="step" value="{$nextStep}"> |
| 13 | <input type="hidden" name="tmpFilePrefix" value="{$tmpFilePrefix}"> |
| 14 | <input type="hidden" name="languageCode" value="{$languageCode}"> |
| 15 | <input type="hidden" name="dev" value="{$developerMode}"> |
| 16 | {if $__additionalParameters|isset} |
| 17 | {foreach from=$__additionalParameters key=__name item=__value} |
| 18 | <input type="hidden" name="{$__name}" value="{$__value}"> |
| 19 | {/foreach} |
| 20 | {/if} |
| 21 | </div> |
| 22 | </form> |
| 23 | </section> |
| 24 | <script> |
| 25 | if (typeof window._trackWcfSetupStep === 'function') window._trackWcfSetupStep('next'); |
| 26 | </script> |
| 27 | <script> |
| 28 | window.addEventListener('DOMContentLoaded', (event) => { |
| 29 | document.forms[0].submit(); |
| 30 | }); |
| 31 | </script> |
| 32 | |
| 33 | {include file='footer'} |