This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
@@ -0,0 +1,30 @@
//
// SocialSignUpViewController.h
// RobloxMobile
//
// Created by Kyler Mulherin on 9/10/15.
// Copyright © 2015 ROBLOX. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "NonRotatableViewController.h"
#import "RBValidTextField.h"
#import "RobloxImageView.h"
@interface SocialSignUpViewController : NonRotatableViewController <UIGestureRecognizerDelegate>
@property IBOutlet RobloxImageView* imgIdentity;
@property IBOutlet RBValidTextField* txtUsername;
@property IBOutlet UILabel* lblSelectUserName;
@property IBOutlet UILabel* lblNameDescription;
@property IBOutlet UILabel* lblAlreadyHaveAccount;
@property IBOutlet UILabel* lblAlmostDone;
@property IBOutlet UIButton* btnAccept;
@property IBOutlet UIButton* btnCancel;
@property IBOutlet UIView* whiteView;
@property IBOutlet UIView* shadowContainer;
-(IBAction) createAccount:(id)sender;
-(IBAction) cancelSignUp:(id)sender;
@end