apeters 519dbc73c6 Cat.
Signed-off-by: apeters <apeters@korves.net>
2025-06-03 11:40:56 +00:00

32 lines
979 B
HTML

<form
data-loading-disable
hx-trigger="submit throttle:1s"
hx-post="/auth/register/webauthn/options">
<input type="hidden" name="token" value="{{ token }}">
<div>
<h5>Your token: <mark>{{ token }}</mark></h5>
<p>
A token intention was saved. Please ask an administrator to verify your token.<br>
After validation you will be asked to register a passkey.
</p>
<footer>
<fieldset>
<label for="confirmation_code">Confirmation code</label>
<input type="text" id="confirmation_code" name="confirmation_code"
pattern="[0-9]*"
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="false"
required>
<button type="submit"
hx-target="this"
id="register"
hx-swap="innerHTML">
Register
</button>
</fieldset>
</footer>
</div>
</form>