flexisip-account-manager/flexiapi/resources/views/account/home.blade.php
Timothée Jaussoin 30fcf9792f Update wording
Send a confirmation email when the password is set for the first time
Remove the API link from the menu and move it to the footer
Allow different domains to be set in the POST /api/accounts endpoints + related tests
Cleanup the API tests
Update the dependencies
2020-09-14 11:55:07 +02:00

32 lines
No EOL
960 B
PHP

@extends('layouts.main')
@section('content')
<h2>{{ config('app.name') }}</h2>
<p>There are {{ number_format($count) }} users registered with this service.</p>
@if (config('instance.intro_registration'))
<p>{!! nl2br(config('instance.intro_registration')) !!}</p>
@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