mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-02-07 13:58:24 +00:00
Slight UI adjustments Allow Markdown in the intro text Add toggle for Devices Management panel
32 lines
No EOL
957 B
PHP
32 lines
No EOL
957 B
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
|
|
|
|
<hr />
|
|
|
|
<div class="list-group mb-3">
|
|
<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>
|
|
<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>
|
|
|
|
@include('parts.password_recovery')
|
|
|
|
@endsection |