mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-01 17:37:32 +00:00
* fix: password complexity policy * feat: check password policy * feat: check password policy * fix: password policy on password change * fix: remove double policy check * feat: check pw policy on register * feat: check pw policy on init * fix: hover on secondary buttons * fix: use data set instead of hidden inputs * fix: disabled button * fix: en login * fix: read policy * feat: check if org exists * multiple checks * feat: validate all forms * fix: check all forms * fix: remove unused err Co-authored-by: Livio Amstutz <livio.a@gmail.com>
53 lines
2.1 KiB
HTML
53 lines
2.1 KiB
HTML
{{template "main-top" .}}
|
|
|
|
<h1>{{t "PasswordChange.Title"}}</h1>
|
|
<p>{{t "PasswordChange.Description"}}</p>
|
|
|
|
<form action="{{ changePasswordUrl }}" method="POST">
|
|
|
|
{{ .CSRF }}
|
|
|
|
<input type="hidden" name="authRequestID" value="{{ .AuthReqID }}" />
|
|
|
|
<div class="fields">
|
|
<div class="field">
|
|
<label class="label" for="change-old-password">{{t "PasswordChange.OldPassword"}}</label>
|
|
<input class="input" type="password" id="change-old-password" name="change-old-password" autocomplete="current-password" autofocus required>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label class="label" for="change-new-password">{{t "PasswordChange.NewPassword"}}</label>
|
|
<input data-minlength="{{ .MinLength }}"
|
|
data-has-uppercase="{{ .HasUppercase }}"
|
|
data-has-lowercase="{{ .HasLowercase }}"
|
|
data-has-number="{{ .HasNumber }}"
|
|
data-has-symbol="{{ .HasSymbol }}"
|
|
class="input"
|
|
type="password"
|
|
id="change-new-password"
|
|
name="change-new-password"
|
|
autocomplete="new-password"
|
|
required>
|
|
{{ .PasswordPolicyDescription }}
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label class="label" for="change-password-confirmation">{{t "PasswordChange.NewPasswordConfirmation"}}</label>
|
|
<input class="input" type="password" id="change-password-confirmation" name="change-password-confirmation" autocomplete="new-password" required>
|
|
</div>
|
|
</div>
|
|
|
|
{{ template "error-message" .}}
|
|
|
|
<div class="actions">
|
|
<button type="submit" id="change-password-button" name="resend" value="false" class="primary right" disabled>{{t "Actions.Next"}}</buttontype="submit">
|
|
</div>
|
|
</form>
|
|
|
|
<script src="{{ resourceUrl "scripts/form_submit.js" }}"></script>
|
|
<script src="{{ resourceUrl "scripts/password_policy_check.js" }}"></script>
|
|
<script src="{{ resourceUrl "scripts/change_password_check.js" }}"></script>
|
|
|
|
|
|
{{template "main-bottom" .}}
|
|
|