flexisip-account-manager/flexiapi/resources/views/account/authenticate_email.blade.php
Timothée Jaussoin 641feb9a2e Add Account creation
Add Aliases support
2020-09-14 11:24:59 +02:00

13 lines
No EOL
454 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 addres <b>{{ $account->email }}</b></p>
@endif
@endif
@endsection