// // SocialSignUpViewController.h // RobloxMobile // // Created by Kyler Mulherin on 9/10/15. // Copyright © 2015 ROBLOX. All rights reserved. // #import #import "NonRotatableViewController.h" #import "RBValidTextField.h" #import "RobloxImageView.h" @interface SocialSignUpViewController : NonRotatableViewController @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