mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-20 22:41:56 +00:00

* fix: update client secret, skip passwordsteps only if login not if linking * fix: global policy for register * fix: scope handling * fix: back after error * fix: change org id scope to primary domain * fix: check if primarydomain empty * fix: local sh * fix: disable buttons on org login policy
29 lines
958 B
HTML
29 lines
958 B
HTML
|
|
{{template "main-top" .}}
|
|
|
|
<div class="head">
|
|
<h1>{{t "ExternalNotFoundOption.Title"}}</h1>
|
|
<p>{{t "ExternalNotFoundOption.Description"}}</p>
|
|
</div>
|
|
|
|
<form action="{{ externalNotFoundOptionUrl }}" method="POST">
|
|
|
|
{{ .CSRF }}
|
|
|
|
<input type="hidden" name="authRequestID" value="{{ .AuthReqID }}" />
|
|
|
|
<div class="actions">
|
|
<button class="secondary right" name="link" value="true" formnovalidate>{{t "ExternalNotFoundOption.Link"}}</button>
|
|
<button class="secondary right" name="autoregister" value="true" formnovalidate>{{t "ExternalNotFoundOption.AutoRegister"}}</button>
|
|
<button class="secondary right" name="resetlinking" value="true" formnovalidate>{{t "Actions.Back"}}</button>
|
|
</div>
|
|
|
|
{{template "error-message" .}}
|
|
</form>
|
|
|
|
|
|
<script src="{{ resourceUrl "scripts/form_submit.js" }}"></script>
|
|
<script src="{{ resourceUrl "scripts/default_form_validation.js" }}"></script>
|
|
|
|
{{template "main-bottom" .}}
|
|
|