flexisip-account-manager/flexiapi/resources/views/account/authenticate/auth_token.blade.php
Timothée Jaussoin fc96338bfb Redesign the UI
2023-06-09 08:24:49 +00:00

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