mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-15 15:48:21 +00:00

* fix: login ui for v2 * a color * footer Co-authored-by: Livio Amstutz <livio.a@gmail.com>
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" 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" .}} |