Booking confirmation styling updates.

This commit is contained in:
Alex Tselegidis 2022-01-24 12:58:48 +01:00
parent e07f47b30b
commit 79652feba9
2 changed files with 11 additions and 11 deletions

View file

@ -29,7 +29,7 @@ $lang['confirm'] = 'Confirm';
$lang['update'] = 'Update'; $lang['update'] = 'Update';
$lang['cancel_appointment_hint'] = 'Press the "Cancel" button to remove the appointment from the company schedule.'; $lang['cancel_appointment_hint'] = 'Press the "Cancel" button to remove the appointment from the company schedule.';
$lang['cancel'] = 'Cancel'; $lang['cancel'] = 'Cancel';
$lang['appointment_registered'] = 'Your appointment has been successfully registered.'; $lang['appointment_registered'] = 'Your appointment has been successfully registered!';
$lang['cancel_appointment_title'] = 'Cancel Appointment'; $lang['cancel_appointment_title'] = 'Cancel Appointment';
$lang['appointment_cancelled'] = 'Your appointment has been successfully cancelled.'; $lang['appointment_cancelled'] = 'Your appointment has been successfully cancelled.';
$lang['appointment_cancelled_title'] = 'Appointment Cancelled'; $lang['appointment_cancelled_title'] = 'Appointment Cancelled';

View file

@ -3,30 +3,30 @@
<?php section('content') ?> <?php section('content') ?>
<div> <div>
<img id="success-icon" class="mt-0 mb-2" src="<?= base_url('assets/img/success.png') ?>" alt="success"/> <img id="success-icon" class="mt-0 mb-5" src="<?= base_url('assets/img/success.png') ?>" alt="success"/>
</div> </div>
<div> <div class="mb-5">
<h3><?= lang('appointment_registered') ?></h3> <h4 class="mb-5"><?= lang('appointment_registered') ?></h4>
<p> <p>
<?= lang('appointment_details_was_sent_to_you') ?> <?= lang('appointment_details_was_sent_to_you') ?>
</p> </p>
<p> <p class="mb-5 text-muted">
<strong> <small>
<?= lang('check_spam_folder') ?> <?= lang('check_spam_folder') ?>
</strong> </small>
</p> </p>
<a href="<?= site_url() ?>" class="btn btn-success btn-large"> <a href="<?= site_url() ?>" class="btn btn-primary btn-large">
<i class="fas fa-calendar-alt"></i> <i class="fas fa-calendar-alt me-2"></i>
<?= lang('go_to_booking_page') ?> <?= lang('go_to_booking_page') ?>
</a> </a>
<?php if (config('google_sync_feature')): ?> <?php if (config('google_sync_feature')): ?>
<button id="add-to-google-calendar" class="btn btn-primary"> <button id="add-to-google-calendar" class="btn btn-outline-secondary">
<i class="fas fa-plus"></i> <i class="fas fa-plus me-2"></i>
<?= lang('add_to_google_calendar') ?> <?= lang('add_to_google_calendar') ?>
</button> </button>
<?php endif ?> <?php endif ?>