TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:31 +02:00
commit 3e43c11539
407 changed files with 51272 additions and 0 deletions
@@ -0,0 +1,39 @@
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
<p>
Set a new password for the Install Tool. The password hash is stored in <code>system/settings.php</code>,
and replaces the previously configured password.
</p>
<f:render partial="Generic/ConfigurationNotWritable" arguments="{_all}"/>
<div class="t3js-module-content" data-install-tool-token="{changeInstallToolPasswordToken}">
<form action="" id="t3js-changeInstallToolPassword-form" method="post" spellcheck="false">
<div class="form-group">
<label for="t3-install-tool-password" class="form-label">Enter new password:</label>
<input
id="t3-install-tool-password"
class="t3-install-form-input-text t3-install-form-password-strength t3js-changeInstallToolPassword-password form-control"
type="password"
autocomplete="off"
required
{f:if(condition: '!{isWritable}', then: 'disabled')}
/>
</div>
<div class="form-group">
<label for="t3-install-tool-password-repeat" class="form-label">Repeat password:</label>
<input
id="t3-install-tool-password-repeat"
class="t3-install-form-input-text t3js-changeInstallToolPassword-password-check form-control"
type="password"
autocomplete="off"
required
{f:if(condition: '!{isWritable}', then: 'disabled')}
/>
</div>
<div class="t3js-changeInstallToolPassword-output"></div>
</form>
</div>
</html>