From fa7303bc99ed56e6770928d59e16ee3306e26750 Mon Sep 17 00:00:00 2001 From: George Halkiadakis Date: Mon, 27 Mar 2023 03:19:43 +0300 Subject: several tests on user_manager extension --- html/app/controllers/Classroom_user.php | 69 +++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 html/app/controllers/Classroom_user.php (limited to 'html/app/controllers/Classroom_user.php') diff --git a/html/app/controllers/Classroom_user.php b/html/app/controllers/Classroom_user.php new file mode 100644 index 0000000..616ebf6 --- /dev/null +++ b/html/app/controllers/Classroom_user.php @@ -0,0 +1,69 @@ +user = new UserManager(); + + } + + + public function register_user() + { + $req = Registry::get('REQUEST'); + print_r($req->POST); die(); + + } + + + public function login_user() + { + + } + + + /** forgot password + * + * send an otp + * (then verify) + * + */ + public function forgot_password() + { + + } + + + /** Verify Account + * + * check if posted OTP matched the one sent to the user + * + */ + public function verify_otp() + { + + } + + +} \ No newline at end of file -- cgit v1.2.3