mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
25 lines
511 B
PHP
25 lines
511 B
PHP
<?php extend('layouts/account/account_layout') ?>
|
|
|
|
<?php section('content') ?>
|
|
|
|
<h3><?= lang('log_out') ?></h3>
|
|
|
|
<p>
|
|
<?= lang('logout_success') ?>
|
|
</p>
|
|
|
|
<br>
|
|
|
|
<a href="<?= site_url() ?>" class="btn btn-success btn-large">
|
|
<i class="fas fa-calendar-alt mr-2"></i>
|
|
<?= lang('book_appointment_title') ?>
|
|
</a>
|
|
|
|
<a href="<?= site_url('backend') ?>" class="btn btn-outline-secondary btn-large">
|
|
<i class="fas fa-wrench mr-2"></i>
|
|
<?= lang('backend_section') ?>
|
|
</a>
|
|
|
|
<?php section('content') ?>
|
|
|
|
|