mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
- Consume an ExternalAccount on Account creation - Add a tombstone to an ExternalAccount to ensure non re-usage - Add related tests - Generalize Utils - Stop public registration when there is no ExternalAccounts left - Add GenerateExternalAccounts, ExportToExternalAccounts and ImportExternalAccounts console scripts - Provision the ExternalAccount using the depends_on/idkey pair
36 lines
No EOL
1.1 KiB
PHP
36 lines
No EOL
1.1 KiB
PHP
@extends('layouts.main')
|
|
|
|
@section('content')
|
|
|
|
<h2>{{ config('app.name') }}</h2>
|
|
|
|
<p>There are <b>{{ number_format($count) }} users</b> registered with this service.</p>
|
|
|
|
@if (config('instance.intro_registration'))
|
|
@parsedown(config('instance.intro_registration'))
|
|
@endif
|
|
|
|
@if (config('app.web_panel'))
|
|
<hr />
|
|
|
|
<div class="list-group mb-3">
|
|
@if (publicRegistrationEnabled())
|
|
<a href="{{ route('account.register') }}" class="list-group-item list-group-item-action">
|
|
<div class="d-flex w-100 justify-content-between">
|
|
<h5 class="mb-1">Create an account</h5>
|
|
</div>
|
|
<p class="mb-1">Register on our service</p>
|
|
</a>
|
|
@endif
|
|
<a href="{{ route('account.login') }}" class="list-group-item list-group-item-action">
|
|
<div class="d-flex w-100 justify-content-between">
|
|
<h5 class="mb-1">Manage your account</h5>
|
|
</div>
|
|
<p class="mb-1">Get access to your account panel to configure it</p>
|
|
</a>
|
|
</div>
|
|
@endif
|
|
|
|
@include('parts.password_recovery')
|
|
|
|
@endsection |