mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-27 15:50:50 +00:00
31 lines
956 B
HTML
31 lines
956 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>
|
||
|
|
<a class="button secondary" href="{{ loginUrl .AuthReqID }}">
|
||
|
|
{{t "Actions.Back"}}
|
||
|
|
</a>
|
||
|
|
</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" .}}
|
||
|
|
|