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,46 @@
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
<div class="panel panel-default">
<h2 class="panel-heading" role="tab">
<div class="panel-heading-row">
<button
class="panel-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-parent="#accordion"
data-bs-target="#collapseSix"
aria-controls="collapseSix"
aria-expanded="false"
id="headingSix"
>
<div class="panel-title">
<strong>Password hashing settings</strong>
</div>
<span class="caret"></span>
</button>
</div>
</h2>
<div id="collapseSix" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingSix">
<div class="panel-body">
<p>
Configure the password hashing algorithm used for frontend and backend users.
</p>
<p>
TYPO3 never stores passwords in plain text. Instead, passwords are stored using
a salted one-way hash.
Available hashing algorithms are detected automatically.
</p>
<p>
<strong>If unsure, select the first available option, which represents the most secure algorithm
supported by the system.</strong><br>
The selected algorithm is used for new backend and frontend users. Existing users
are automatically upgraded to the new algorithm after their next successful login.
</p>
<f:for each="{feature.presetsOrderedByPriority}" as="preset">
<f:render partial="Settings/Presets/{feature.name}/{preset.name}" arguments="{_all}" />
</f:for>
</div>
</div>
</div>
</html>