2020-09-18 13:26:28 +02:00
|
|
|
|
|
|
|
|
{{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>
|
2020-09-28 09:29:41 +02:00
|
|
|
<button class="secondary right" name="resetlinking" value="true" formnovalidate>{{t "Actions.Back"}}</button>
|
2020-09-18 13:26:28 +02:00
|
|
|
</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" .}}
|
|
|
|
|
|