flexisip-account-manager/flexiapi/resources/views/account/register.blade.php
Timothée Jaussoin 0b5da6b16e Don't retrieve all the users from the BDD when trying to remove unconfirmed ones
Update the dependencies
Bump the build number
2021-03-23 11:07:30 +01:00

31 lines
No EOL
992 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>
@if (config('app.phone_authentication'))
<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>
@endif
</div>
@endsection