mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-27 23:49:19 +00:00
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
13 lines
No EOL
457 B
PHP
13 lines
No EOL
457 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 |