flexisip-account-manager/flexiapi/resources/views/parts/terms.blade.php
Timothée Jaussoin e98e0bf003 Allow the Terms and Conditions to be set as URLs
Cleanup the old TaC pages
Update the dependencies
2021-02-09 13:58:32 +01:00

13 lines
No EOL
675 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="{{ config('app.terms_of_use_url') }}">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="{{ config('app.privacy_policy_url') }}">Privacy policy</a></p>
</div>
@include('parts.captcha')