mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
14 lines
460 B
PHP
14 lines
460 B
PHP
@extends('layouts.main', ['welcome' => true])
|
|
|
|
@section('content')
|
|
<div id="wizard">
|
|
<h3>{{ __('Configure your Linphone application') }}</h3>
|
|
|
|
<a class="btn" href="linphone-config:{{ route('provisioning.provision', ['provisioning_token' => $token]) }}">
|
|
{{ __('Open the app') }}
|
|
</a>
|
|
<a class="btn secondary" target="_blank" href="https://www.linphone.org/en/download/">
|
|
{{ __('Download the app') }}
|
|
</a>
|
|
</div>
|
|
@endsection
|