flexisip-account-manager/flexiapi/resources/views/parts/terms.blade.php
Timothée Jaussoin 9326245cfb Add a Privacy page + validation
Slight UI adjustments
Allow Markdown in the intro text
Add toggle for Devices Management panel
2020-09-24 15:16:25 +02:00

13 lines
No EOL
659 B
PHP

<div class="form-check mb-3">
{!! Form::checkbox('terms', 'true', false, ['class' => 'form-check-input', 'id' => 'terms']) !!}
<label class="form-check-label" for="terms">I accept the Terms and Conditions: </a></label>
<p>Read the <a href="{{ route('account.terms') }}">Terms and Conditions</a></p>
</div>
<div class="form-check mb-3">
{!! Form::checkbox('privacy', 'true', false, ['class' => 'form-check-input', 'id' => 'privacy']) !!}
<label class="form-check-label" for="privacy">I accept the Privacy policy: </a></label>
<p>Read the <a href="{{ route('account.privacy') }}">Privacy policy</a></p>
</div>
@include('parts.captcha')