flexisip-account-manager/flexiapi/resources/views/account/register.blade.php
Timothée Jaussoin c65f1a804c UI and feature adjustments
- Add a toggle for the phone SMS registration/auth related features
- Add the newsletter email registration toggle
- Rename and move around views and controllers
- Refactor the login and registration forms
- Split the registration form in two, email and phone
2020-09-14 11:24:59 +02:00

29 lines
No EOL
919 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') }}">Authenticate</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