Moved the installation and update pages to the new view/pages directory

This commit is contained in:
alextselegidis 2021-11-12 16:57:05 +01:00
parent 0b9f7ecea2
commit 007e95ed7a
5 changed files with 2 additions and 12 deletions

View file

@ -350,6 +350,6 @@ class Backend extends EA_Controller {
$view = ['success' => FALSE, 'exception' => $e->getMessage()];
}
$this->load->view('general/update', $view);
$this->load->view('pages/instance/instance_update_page', $view);
}
}

View file

@ -46,7 +46,7 @@ class Installation extends EA_Controller {
return;
}
$this->load->view('general/installation', [
$this->load->view('pages/instance/instance_installation_page', [
'base_url' => config('base_url')
]);
}

View file

@ -1,10 +0,0 @@
<html lang="en">
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>