2017-11-16 00:51:46 +03:00
|
|
|
<!DOCTYPE html>
|
2020-04-22 22:48:56 +03:00
|
|
|
<html lang="en">
|
2017-11-16 00:51:46 +03:00
|
|
|
<head>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
|
|
|
2020-09-07 13:54:37 +03:00
|
|
|
<title>Update | Easy!Appointments</title>
|
2020-09-07 13:51:50 +03:00
|
|
|
|
2017-11-16 00:51:46 +03:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/ext/bootstrap/css/bootstrap.min.css') ?>">
|
|
|
|
<link rel="icon" type="image/x-icon" href="<?= asset_url('assets/img/favicon.ico') ?>">
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?= asset_url ('assets/ext/jquery-ui/jquery-ui.min.css')?>">
|
2020-09-07 13:51:50 +03:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/css/update.css') ?>">
|
2017-11-16 00:51:46 +03:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/css/general.css') ?>">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container-fluid header">
|
|
|
|
<div>
|
2020-03-27 12:31:07 +03:00
|
|
|
<a href="https://easyappointments.org" target="_blank">
|
2017-11-16 00:51:46 +03:00
|
|
|
<img src="<?= base_url('assets/img/installation-banner.png') ?>"
|
|
|
|
alt="Easy!Appointments Installation Banner">
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="container content">
|
|
|
|
<?php if ($success): ?>
|
2018-01-30 12:26:00 +03:00
|
|
|
<h4>
|
2017-11-16 00:51:46 +03:00
|
|
|
The database was updated successfully!
|
2018-01-30 12:26:00 +03:00
|
|
|
</h4>
|
2017-11-16 00:51:46 +03:00
|
|
|
|
2018-01-30 12:26:00 +03:00
|
|
|
<p>
|
2017-11-16 00:51:46 +03:00
|
|
|
You can now use the latest Easy!Appointments version.
|
2018-01-30 12:26:00 +03:00
|
|
|
</p>
|
2017-11-16 00:51:46 +03:00
|
|
|
<?php else: ?>
|
2018-01-30 12:26:00 +03:00
|
|
|
<h4>
|
|
|
|
There was an error during the update process ...
|
|
|
|
</h4>
|
2017-11-16 00:51:46 +03:00
|
|
|
|
2018-01-30 12:26:00 +03:00
|
|
|
<p>
|
2017-11-16 00:51:46 +03:00
|
|
|
Please restore your database backup.
|
2018-01-30 12:26:00 +03:00
|
|
|
</p>
|
2017-11-16 00:51:46 +03:00
|
|
|
|
|
|
|
<div class="well text-left">
|
|
|
|
Error Message: <?= $exception ?>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
2018-01-30 12:26:00 +03:00
|
|
|
|
|
|
|
<div>
|
2020-06-19 14:09:22 +03:00
|
|
|
<a href="<?= site_url('backend') ?>" class="btn btn-light btn-large">
|
2020-09-23 14:18:50 +03:00
|
|
|
<i class="fas fa-wrench mr-2"></i>
|
2018-01-30 12:26:00 +03:00
|
|
|
<?= lang('backend_section') ?>
|
|
|
|
</a>
|
|
|
|
</div>
|
2017-11-16 00:51:46 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<footer>
|
2020-03-27 12:31:07 +03:00
|
|
|
Powered by <a href="https://easyappointments.org">Easy!Appointments</a>
|
2017-11-16 00:51:46 +03:00
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|