2
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
#import <AuthenticationServices/AuthenticationServices.h>
|
||||
#import "KBLoginVM.h"
|
||||
#import "AppDelegate.h"
|
||||
#import "KBRegistVerEmailVC.h"
|
||||
|
||||
@interface KBEmailRegistVC () <UITextViewDelegate, UITextFieldDelegate>
|
||||
|
||||
@@ -262,6 +263,13 @@
|
||||
KBLOG(@"onTapSubmit email=%@, password length=%zd",
|
||||
self.emailTextField.text,
|
||||
self.passwordTextField.text.length);
|
||||
KBRegistVerEmailVC *vc = [[KBRegistVerEmailVC alloc] init];
|
||||
UINavigationController *nav = KB_CURRENT_NAV;
|
||||
if ([nav isKindOfClass:[BaseNavigationController class]]) {
|
||||
[(BaseNavigationController *)nav kb_pushViewControllerRemovingSameClass:vc animated:YES];
|
||||
} else {
|
||||
[nav pushViewController:vc animated:YES];
|
||||
}
|
||||
}
|
||||
|
||||
- (void)onTapForgotPassword {
|
||||
|
||||
Reference in New Issue
Block a user