Clean up
This commit is contained in:
@@ -10,6 +10,9 @@
|
||||
# OS X Thumbnails
|
||||
._*
|
||||
|
||||
apache_log
|
||||
apache_log/*
|
||||
|
||||
# Windows image file caches
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
|
||||
+1
-1
@@ -37,7 +37,7 @@ class App extends BaseConfig
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $indexPage = 'index.php';
|
||||
public $indexPage = ''; //'index.php';
|
||||
|
||||
/**
|
||||
* --------------------------------------------------------------------------
|
||||
|
||||
@@ -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');
|
||||
/*
|
||||
|
||||
@@ -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');
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -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 controller’s 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
File diff suppressed because it is too large
Load Diff
@@ -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>
|
||||
Reference in New Issue
Block a user