mirror of
https://github.com/zitadel/zitadel.git
synced 2025-06-07 18:58:33 +00:00

* start v2 * start * run * some cleanup * remove v2 pkg again * simplify * webauthn * remove unused config * fix login path in Dockerfile * fix asset_generator.go * health handler * fix grpc web * refactor * merge * build new main.go * run new main.go * update logging pkg * fix error msg * update logging * cleanup * cleanup * go mod tidy * change localDevMode * fix customEndpoints * update logging * comments * change local flag to external configs * fix location generated go code * fix Co-authored-by: fforootd <florian@caos.ch>
57 lines
2.3 KiB
HTML
57 lines
2.3 KiB
HTML
{{template "main-top" .}}
|
|
|
|
<div class="lgn-head">
|
|
<h1>{{t "PasswordChange.Title"}}</h1>
|
|
{{ template "user-profile" . }}
|
|
|
|
<p>{{t "PasswordChange.Description"}}</p>
|
|
</div>
|
|
|
|
<form action="{{ changePasswordUrl }}" method="POST">
|
|
|
|
{{ .CSRF }}
|
|
|
|
<input type="hidden" name="authRequestID" value="{{ .AuthReqID }}" />
|
|
|
|
<div class="fields">
|
|
<div class="field">
|
|
<label class="lgn-label" for="change-old-password">{{t "PasswordChange.OldPasswordLabel"}}</label>
|
|
<input class="lgn-input" type="password" id="change-old-password" name="change-old-password"
|
|
autocomplete="current-password" autofocus required>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label class="lgn-label" for="change-new-password">{{t "PasswordChange.NewPasswordLabel"}}</label>
|
|
<input data-minlength="{{ .MinLength }}" data-has-uppercase="{{ .HasUppercase }}"
|
|
data-has-lowercase="{{ .HasLowercase }}" data-has-number="{{ .HasNumber }}"
|
|
data-has-symbol="{{ .HasSymbol }}" class="lgn-input" type="password" id="change-new-password"
|
|
name="change-new-password" autocomplete="new-password" required>
|
|
{{ .PasswordPolicyDescription }}
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label class="lgn-label"
|
|
for="change-password-confirmation">{{t "PasswordChange.NewPasswordConfirmLabel"}}</label>
|
|
<input class="lgn-input" type="password" id="change-password-confirmation"
|
|
name="change-password-confirmation" autocomplete="new-password" required>
|
|
</div>
|
|
</div>
|
|
|
|
{{ template "error-message" .}}
|
|
|
|
<div class="lgn-actions">
|
|
<a class="lgn-stroked-button lgn-primary" href="{{ loginUrl }}">
|
|
{{t "PasswordChange.CancelButtonText"}}
|
|
</a>
|
|
<span class="fill-space"></span>
|
|
<button type="submit" id="change-password-button" name="resend" value="false"
|
|
class="lgn-raised-button lgn-primary">{{t "PasswordChange.NextButtonText"}}</button>
|
|
</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" .}} |