flexisip-account-manager/flexiapi/resources/views/account/home.blade.php
Timothée Jaussoin c65f1a804c UI and feature adjustments
- Add a toggle for the phone SMS registration/auth related features
- Add the newsletter email registration toggle
- Rename and move around views and controllers
- Refactor the login and registration forms
- Split the registration form in two, email and phone
2020-09-14 11:24:59 +02:00

32 lines
No EOL
945 B
PHP

@extends('layouts.main')
@section('content')
<h2>{{ config('app.name') }}</h2>
<p>There are {{ $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