mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-20 11:28:06 +00:00
11 lines
No EOL
427 B
PHP
11 lines
No EOL
427 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 |