2021-12-06 11:00:02 +03:00
|
|
|
<?php extend('layouts/backend_layout') ?>
|
2021-11-22 09:39:00 +03:00
|
|
|
|
|
|
|
<?php section('content') ?>
|
|
|
|
|
2022-01-05 11:16:23 +03:00
|
|
|
<div id="about-page" class="container backend-page">
|
|
|
|
<div id="about" class="col-lg-8 offset-lg-2">
|
2022-01-24 19:43:44 +03:00
|
|
|
|
|
|
|
<div class="text-center my-5">
|
|
|
|
<img src="<?= base_url('assets/img/logo.png') ?>" alt="Easy!Appointments Logo" class="mb-5">
|
|
|
|
|
|
|
|
<h3>
|
|
|
|
Easy!Appointments
|
|
|
|
</h3>
|
|
|
|
<h6 class="text-primary">
|
|
|
|
Online Appointment Scheduler
|
|
|
|
</h6>
|
|
|
|
</div>
|
2021-11-22 09:39:00 +03:00
|
|
|
|
2022-01-24 19:43:44 +03:00
|
|
|
<p class="mb-5">
|
2021-11-22 09:39:00 +03:00
|
|
|
<?= lang('about_app_info') ?>
|
|
|
|
</p>
|
|
|
|
|
2022-01-24 19:43:44 +03:00
|
|
|
<div class="card mb-5">
|
2022-01-05 11:16:23 +03:00
|
|
|
<div class="card-header">
|
2022-09-14 13:25:48 +03:00
|
|
|
<h5 class="fw-light text-black-50 mb-0">
|
|
|
|
<?= lang('current_version') ?>
|
|
|
|
</h5>
|
2022-01-05 11:16:23 +03:00
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<strong>
|
|
|
|
<?= config('version') ?>
|
|
|
|
</strong>
|
|
|
|
</div>
|
2021-11-22 09:39:00 +03:00
|
|
|
</div>
|
2022-09-14 13:25:48 +03:00
|
|
|
|
|
|
|
<h4 class="fw-light text-black-50 mb-3">
|
|
|
|
<?= lang('support') ?>
|
|
|
|
</h4>
|
2022-01-05 11:16:23 +03:00
|
|
|
|
2021-11-22 09:39:00 +03:00
|
|
|
<p>
|
|
|
|
<?= lang('about_app_support') ?>
|
2022-01-05 11:16:23 +03:00
|
|
|
</p>
|
2021-11-22 09:39:00 +03:00
|
|
|
|
2022-01-24 19:43:44 +03:00
|
|
|
<div class="d-lg-flex justify-content-start flex-wrap alight-items-center mb-5">
|
2022-09-14 13:25:48 +03:00
|
|
|
<div class="text-center w-50 mb-3 pe-3">
|
|
|
|
<a class="btn btn-outline-secondary d-block" href="https://easyappointments.org">
|
2022-01-05 11:16:23 +03:00
|
|
|
<i class="fas fa-external-link-alt me-2"></i>
|
|
|
|
<?= lang('official_website') ?>
|
|
|
|
</a>
|
|
|
|
</div>
|
2021-11-22 09:39:00 +03:00
|
|
|
|
2022-09-14 13:25:48 +03:00
|
|
|
<div class="text-center w-50 mb-3 ps-3">
|
|
|
|
<a class="btn btn-outline-secondary d-block" href="https://groups.google.com/forum/#!forum/easy-appointments">
|
2022-01-05 11:16:23 +03:00
|
|
|
<i class="fas fa-external-link-alt me-2"></i>
|
|
|
|
<?= lang('support_group') ?>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
2022-09-14 13:25:48 +03:00
|
|
|
<div class="text-center w-50 mb-3 pe-3">
|
|
|
|
<a class="btn btn-outline-secondary d-block" href="https://github.com/alextselegidis/easyappointments/issues">
|
2022-01-05 11:16:23 +03:00
|
|
|
<i class="fas fa-external-link-alt me-2"></i>
|
|
|
|
<?= lang('project_issues') ?>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
2022-09-14 13:25:48 +03:00
|
|
|
<div class="text-center w-50 mb-3 ps-3">
|
|
|
|
<a class="btn btn-outline-secondary d-block" href="https://facebook.com/easyappts">
|
2022-01-05 11:16:23 +03:00
|
|
|
<i class="fas fa-external-link-alt me-2"></i>
|
|
|
|
Facebook
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
2022-09-14 13:25:48 +03:00
|
|
|
<div class="text-center w-50 mb-3 pe-3">
|
|
|
|
<a class="btn btn-outline-secondary d-block" href="https://twitter.com/easyappts">
|
2022-01-05 11:16:23 +03:00
|
|
|
<i class="fas fa-external-link-alt me-2"></i>
|
|
|
|
Twitter
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-11-22 09:39:00 +03:00
|
|
|
|
2022-09-14 13:25:48 +03:00
|
|
|
<h4 class="fw-light text-black-50 mb-3">
|
|
|
|
<?= lang('license') ?>
|
|
|
|
</h4>
|
2021-11-22 09:39:00 +03:00
|
|
|
|
2022-09-14 13:25:48 +03:00
|
|
|
<p>
|
2021-11-22 09:39:00 +03:00
|
|
|
<?= lang('about_app_license') ?>
|
|
|
|
</p>
|
2022-09-14 13:25:48 +03:00
|
|
|
|
|
|
|
<div class="mb-5">
|
|
|
|
<a class="btn btn-outline-secondary d-block w-50 m-auto" href="https://www.gnu.org/licenses/gpl-3.0.en.html" target="_blank">
|
|
|
|
<i class="fas fa-external-link-alt me-2"></i>
|
|
|
|
GPL-3.0
|
|
|
|
</a>
|
|
|
|
</div>
|
2021-11-22 09:39:00 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-03-13 10:24:43 +03:00
|
|
|
<?php end_section('content') ?>
|