This commit is contained in:
2022-02-19 23:45:05 -05:00
parent 944ec49640
commit b949c910ea
5 changed files with 155 additions and 17 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
class Paymnt extends Users_Controller {
public function index() {
$data = $this->getSessionArray();
if (!isset($_SESSION['username']) or $_SESSION['username'] == '') {
redirect(home);
} else {
}
}
public function paymus() {
$data = $this->getSessionArray();
$this->RenderUserPage('users/view_startpaymus', $data);
}
}