mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-04-17 19:58:27 +00:00
- 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
13 lines
No EOL
455 B
PHP
13 lines
No EOL
455 B
PHP
@extends('layouts.main')
|
|
|
|
@section('content')
|
|
@if (Auth::check())
|
|
@include('parts.already_auth')
|
|
@else
|
|
@if ($account->activated)
|
|
<p>A unique authentication link was sent by email to <b>{{ $account->email }}</b></p>
|
|
@else
|
|
<p>To finish your registration process and set a password please follow the link sent on your email address <b>{{ $account->email }}</b></p>
|
|
@endif
|
|
@endif
|
|
@endsection |