flexisip-account-manager/flexiapi/resources/views/account/register.blade.php
Timothée Jaussoin 30fcf9792f Update wording
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
2020-09-14 11:55:07 +02:00

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