// // AuthenticationView.h // Project // // Created by Phan Quang Hoang on 8/26/13. // Copyright (c) 2013 Phan Quang Hoang. All rights reserved. // #import #import "CSTextField.h" @interface AuthenticationView : UIViewController { IBOutlet UIScrollView *mainScroll; IBOutlet UIView *mainView; UIGestureRecognizer *tapOnView; } @property (nonatomic, retain) IBOutlet UILabel *requestInputCode; @property (nonatomic, retain) IBOutlet UILabel *mailNotSendLabel; @property (nonatomic, retain) IBOutlet CSTextField *txfInputCode; @property (nonatomic, retain) IBOutlet UILabel *errorLabel; @property (nonatomic, retain) UIActivityIndicatorView * activityView; - (IBAction)modifyInput:(id)sender; - (IBAction)regisAuthentication:(id)sender; @end