This commit is contained in:
31
application/views/components/booking_footer.php
Normal file
31
application/views/components/booking_footer.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* Local variables.
|
||||
*
|
||||
* @var bool $display_login_button
|
||||
*/
|
||||
?>
|
||||
|
||||
<div id="frame-footer">
|
||||
<small>
|
||||
<span class="footer-powered-by small">
|
||||
Powered By
|
||||
<a href="https://easyappointments.org" target="_blank">Easy!Appointments</a>
|
||||
</span>
|
||||
|
||||
<span class="footer-options">
|
||||
<span id="select-language" class="badge bg-secondary">
|
||||
<i class="fas fa-language me-2"></i>
|
||||
<?= ucfirst(config('language')) ?>
|
||||
</span>
|
||||
|
||||
<?php if ($display_login_button): ?>
|
||||
<a class="backend-link badge bg-primary text-decoration-none px-2"
|
||||
href="<?= session('user_id') ? site_url('calendar') : site_url('login') ?>">
|
||||
<i class="fas fa-sign-in-alt me-2"></i>
|
||||
<?= session('user_id') ? lang('backend_section') : lang('login') ?>
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
</span>
|
||||
</small>
|
||||
</div>
|
||||
Reference in New Issue
Block a user