flexisip-account-manager/flexiapi/resources/views/account/authenticate/auth_token.blade.php
2025-03-13 13:50:10 +00:00

11 lines
No EOL
439 B
PHP

@extends('layouts.main', ['welcome' => true])
@section('content')
<section>
<p>{{ __('Scan the following QR Code using an authenticated device and wait a few seconds.') }}</p><br />
<p><img src="{{ route('auth_tokens.qrcode', ['token' => $authToken->token]) }}"></p>
<script type="text/javascript">
setTimeout(function () { location.reload(1); }, 5000);
</script>
</section>
@endsection