40 lines
1.6 KiB
HTML
40 lines
1.6 KiB
HTML
<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>
|