This commit is contained in:
2025-12-03 15:19:03 +08:00
parent 599a5de3bc
commit a50d18b486
14 changed files with 832 additions and 2 deletions

View File

@@ -9,6 +9,7 @@
#import <AuthenticationServices/AuthenticationServices.h>
#import "KBLoginVM.h"
#import "AppDelegate.h"
#import "KBEmailRegistVC.h"
@interface KBLoginVC () <UITextViewDelegate>
@@ -88,7 +89,7 @@
[self.view addSubview:self.topRightImageView];
[self.topRightImageView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(self.view).offset(KB_StatusBarHeight() + KBFit(24));
make.right.equalTo(self.view).offset(-KBFit(20));
make.right.equalTo(self.view).offset(KBFit(10));
make.width.mas_equalTo(KBFit(244));
make.height.mas_equalTo(KBFit(224));
}];
@@ -197,6 +198,8 @@
- (void)onTapSignUp {
//
KBLOG(@"onTapSignUp");
KBEmailRegistVC *vc = [[KBEmailRegistVC alloc] init];
[KB_CURRENT_NAV pushViewController:vc animated:true];
}
- (void)onTapForgotPassword {