diff options
Diffstat (limited to 'html')
| -rw-r--r-- | html/app/extends/ClassUserMagager.php | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/html/app/extends/ClassUserMagager.php b/html/app/extends/ClassUserMagager.php new file mode 100644 index 0000000..c365670 --- /dev/null +++ b/html/app/extends/ClassUserMagager.php @@ -0,0 +1,62 @@ +<?php + +namespace app\extends; + +use app\models\admin\User_model; +use \Registry; + +/** ClassUserManager + * + * extends (anom's) UserManager + * + * this way it specializes the UserManagement + * according to this app's special rules + * + */ +class ClassUserMagager extends UserManager +{ + + public function create_user() + { + + } + + + public function register_user() + { + + + } + + + 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 |
