mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-04-17 19:58:27 +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
29 lines
No EOL
912 B
PHP
29 lines
No EOL
912 B
PHP
@extends('layouts.main')
|
|
|
|
@section('content')
|
|
|
|
<p class="text-center">
|
|
You already have an account?
|
|
<a class="ml-2 btn btn-primary btn-sm" href="{{ route('account.login') }}">Login</a>
|
|
</p>
|
|
|
|
<hr />
|
|
|
|
<h2>Register a new account</h2>
|
|
|
|
<div class="list-group mb-3 pt-2">
|
|
<a href="{{ route('account.register.email') }}" class="list-group-item list-group-item-action">
|
|
<div class="d-flex w-100 justify-content-between">
|
|
<h5 class="mb-1">Using your email address</h5>
|
|
</div>
|
|
<p class="mb-1">Register on our service with an email address</p>
|
|
</a>
|
|
<a href="{{ route('account.register.phone') }}" class="list-group-item list-group-item-action">
|
|
<div class="d-flex w-100 justify-content-between">
|
|
<h5 class="mb-1">With your phone number</h5>
|
|
</div>
|
|
<p class="mb-1">Use your phone number to register</p>
|
|
</a>
|
|
</div>
|
|
|
|
@endsection |