mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-04-28 16:56:20 +00:00
32 lines
No EOL
1.2 KiB
PHP
32 lines
No EOL
1.2 KiB
PHP
@extends('layouts.main')
|
|
|
|
@section('content')
|
|
|
|
<h2>Register using a phone number</h2>
|
|
|
|
{!! Form::open(['route' => 'account.store.phone']) !!}
|
|
|
|
<p>Please enter your phone number and optionally a username. When the username is set, it will identify you on the service: other users won't need to know your phone number to call you.<br />The next step of the registration procedure will ask you to setup a password.</p>
|
|
|
|
<div class="form-group">
|
|
{!! Form::label('phone', 'Phone number') !!}
|
|
{!! Form::text('phone', old('phone'), ['class' => 'form-control', 'placeholder' => '+123456789']) !!}
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
{!! Form::label('username', 'SIP Username (optional)') !!}
|
|
<div class=" input-group">
|
|
{!! Form::text('username', old('username'), ['class' => 'form-control', 'placeholder' => 'username']) !!}
|
|
<div class="input-group-append">
|
|
<span class="input-group-text" id="basic-addon2">{{ $domain }}</span>
|
|
</div>
|
|
</div>
|
|
<small class="form-text text-muted mb-3">Capital letters are not allowed</small>
|
|
</div>
|
|
|
|
@include('parts.terms')
|
|
|
|
{!! Form::submit('Register', ['class' => 'btn btn-primary btn-centered']) !!}
|
|
{!! Form::close() !!}
|
|
|
|
@endsection |