Files
watrbx-game-engine/iOS/RobloxUI/Source/Screens/SocialSignUpViewController.h
T
2025-09-18 17:55:52 -04:00

31 lines
904 B
Objective-C

//
// 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