mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-08 02:43:21 +00:00
* profile data * fix scripts * fix image paths * feat: show profile (with image) when possible * fix profile image width
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
{{template "main-top" .}}
|
|
|
|
{{ template "user-profile" . }}
|
|
|
|
<p>{{t "Password.Description"}}</p>
|
|
|
|
<form action="{{ passwordUrl }}" method="POST">
|
|
|
|
{{ .CSRF }}
|
|
|
|
<input type="hidden" name="authRequestID" value="{{ .AuthReqID }}" />
|
|
<input type="hidden" name="loginName" value="{{ .LoginName }}" />
|
|
|
|
<div class="fields">
|
|
<div class="field">
|
|
<label class="label" for="password">{{t "Password.Password"}}</label>
|
|
<input class="input" type="password" id="password" name="password" autocomplete="current-password" autofocus required>
|
|
</div>
|
|
</div>
|
|
|
|
{{template "error-message" .}}
|
|
|
|
<div class="actions">
|
|
<button id="submit-button" class="primary right" type="submit" disabled>{{t "Actions.Next"}}</button>
|
|
<a href="{{ loginNameChangeUrl .AuthReqID }}">
|
|
<button class="secondary" type="button">{{t "Actions.Back"}}</button>
|
|
</a>
|
|
<a href="{{ passwordResetUrl .AuthReqID }}">
|
|
<button class="secondary" type="button">{{t "Actions.ForgotPassword"}}</button>
|
|
</a>
|
|
</div>
|
|
</form>
|
|
|
|
<script src="{{ resourceUrl "scripts/form_submit.js" }}"></script>
|
|
<script src="{{ resourceUrl "scripts/default_form_validation.js" }}"></script>
|
|
{{template "main-bottom" .}}
|
|
|