This commit is contained in:
2023-01-21 20:58:14 -05:00
parent b3e5d5c37c
commit e880b389be
9 changed files with 15766 additions and 140 deletions
+3
View File
@@ -10,6 +10,9 @@
# OS X Thumbnails
._*
apache_log
apache_log/*
# Windows image file caches
Thumbs.db
ehthumbs.db
+1 -1
View File
@@ -37,7 +37,7 @@ class App extends BaseConfig
*
* @var string
*/
public $indexPage = 'index.php';
public $indexPage = ''; //'index.php';
/**
* --------------------------------------------------------------------------
+1
View File
@@ -37,6 +37,7 @@ $routes->set404Override();
// route since we don't have to scan directories.
$routes->get('/', 'Home::index');
$routes->get('dash', 'Dash::index');
$routes->get('contacts', 'Dash::contacts');
$routes->post('startlogin', 'Home::startlogin');
/*
+5 -1
View File
@@ -6,7 +6,11 @@ class Dash extends BaseController
{
public function index()
{
return view('view_dash');
return view('bko/dash');
}
public function contacts(){
return view('bko/contacts');
}
+5 -1
View File
@@ -11,6 +11,10 @@ class Home extends BaseController
public function startlogin()
{
return view('welcome_message');
/*Load the URL helper*/
$this->load->helper('url');
// return view('welcome_message');
/*Redirect the user to some internal controllers method*/
redirect('dash');
}
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+133 -133
View File
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -65,11 +65,11 @@
</div>
</div>
</div>
<script>var hostUrl = "assets/";</script>
<script src="assets/plugins/global/plugins.bundle.js"></script>
<script src="assets/js/scripts.bundle.js"></script>
<script>var hostUrl = "/assets/";</script>
<script src="/assets/plugins/global/plugins.bundle.js"></script>
<script src="/assets/js/scripts.bundle.js"></script>
<!--end::Global Javascript Bundle-->
<!--begin::Page Custom Javascript(used by this page)-->
<script src="assets/js/custom/authentication/sign-in/general.js"></script>
<script src="/assets/js/custom/authentication/sign-in/general.js"></script>
</body>
</html>