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