This commit is contained in:
2022-03-24 21:23:01 -04:00
parent 928d064fbe
commit 2e63218e82
4 changed files with 53 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Wallet extends Users_Controller {
public function index() {
//
if (!isset($_SESSION['username']) or $_SESSION['username'] == '') {
redirect(home);
} else {
redirect(dash);
}
}
}