mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
redirected to login and rename powered by
This commit is contained in:
parent
44b4e0f55d
commit
db40900d9a
12 changed files with 20 additions and 14 deletions
|
@ -103,7 +103,13 @@ class Booking extends EA_Controller
|
|||
{
|
||||
if (!is_app_installed()) {
|
||||
redirect('installation');
|
||||
$this->load->view('pages/login');
|
||||
return;
|
||||
}
|
||||
|
||||
$provider_id = $this->input->get('provider');
|
||||
if (!$provider_id) {
|
||||
redirect('login'); // Assuming 'login' is the route or page you want to redirect to
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<small>
|
||||
<span class="footer-powered-by small">
|
||||
Powered By
|
||||
<a href="https://easyappointments.org" target="_blank">Easy!Appointments</a>
|
||||
<a href="https://digiworks.agency" target="_blank">DigiWorks Agency</a>
|
||||
</span>
|
||||
|
||||
<span class="footer-options">
|
||||
|
|
|
@ -32,8 +32,8 @@
|
|||
<div id="footer" style="padding: 10px; text-align: center; margin-top: 10px;
|
||||
border-top: 1px solid #EEE; background: #FAFAFA;">
|
||||
Powered by
|
||||
<a href="https://easyappointments.org" style="text-decoration: none;">
|
||||
Easy!Appointments
|
||||
<a href="https://digiworks.agency" style="text-decoration: none;">
|
||||
DigiWorks Agency
|
||||
</a>
|
||||
|
|
||||
<a href="<?= $settings['company_link'] ?>" style="text-decoration: none;">
|
||||
|
|
|
@ -175,8 +175,8 @@
|
|||
<div id="footer" style="padding: 10px; text-align: center; margin-top: 10px;
|
||||
border-top: 1px solid #EEE; background: #FAFAFA;">
|
||||
Powered by
|
||||
<a href="https://easyappointments.org" style="text-decoration: none;">
|
||||
Easy!Appointments
|
||||
<a href="https://digiworks.agency" style="text-decoration: none;">
|
||||
DigiWorks Agency
|
||||
</a>
|
||||
|
|
||||
<a href="<?= e($settings['company_link']) ?>" style="text-decoration: none;">
|
||||
|
|
|
@ -179,8 +179,8 @@
|
|||
<div id="footer" style="padding: 10px; text-align: center; margin-top: 10px;
|
||||
border-top: 1px solid #EEE; background: #FAFAFA;">
|
||||
Powered by
|
||||
<a href="https://easyappointments.org" style="text-decoration: none;">
|
||||
Easy!Appointments
|
||||
<a href="https://digiworks.agency" style="text-decoration: none;">
|
||||
DigiWorks Agency
|
||||
</a>
|
||||
|
|
||||
<a href="<?= e($settings['company_link']) ?>" style="text-decoration: none;">
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
<p>
|
||||
<small>
|
||||
Powered by
|
||||
<a href="https://easyappointments.org">Easy!Appointments</a>
|
||||
<a href="https://digiworks.agency">DigiWorks Agency</a>
|
||||
</small>
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
<p>
|
||||
<small>
|
||||
Powered by
|
||||
<a href="https://easyappointments.org">Easy!Appointments</a>
|
||||
<a href="https://digiworks.agency">DigiWorks Agency</a>
|
||||
</small>
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
<p>
|
||||
<small>
|
||||
Powered by
|
||||
<a href="https://easyappointments.org">Easy!Appointments</a>
|
||||
<a href="https://digiworks.agency">DigiWorks Agency</a>
|
||||
</small>
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
<div class="mt-4">
|
||||
<small>
|
||||
Powered by
|
||||
<a href="https://easyappointments.org">Easy!Appointments</a>
|
||||
<a href="https://digiworks.agency">DigiWorks Agency</a>
|
||||
</small>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
<div class="mt-2">
|
||||
<small>
|
||||
Powered by
|
||||
<a href="https://easyappointments.org">Easy!Appointments</a>
|
||||
<a href="https://digiworks.agency">DigiWorks Agency</a>
|
||||
</small>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -192,7 +192,7 @@
|
|||
</div>
|
||||
|
||||
<footer>
|
||||
Powered by <a href="https://easyappointments.org">Easy!Appointments</a>
|
||||
Powered by <a href="https://digiworks.agency">DigiWorks Agency</a>
|
||||
</footer>
|
||||
|
||||
<?php component('js_vars_script'); ?>
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
</div>
|
||||
|
||||
<footer>
|
||||
Powered by <a href="https://easyappointments.org">Easy!Appointments</a>
|
||||
Powered by <a href="https://digiworks.agency">DigiWorks Agency</a>
|
||||
</footer>
|
||||
|
||||
<script src="<?= asset_url('assets/vendor/@fortawesome-fontawesome-free/fontawesome.min.js') ?>"></script>
|
||||
|
|
Loading…
Reference in a new issue