//
//  AuthenticationView.h
//  Project
//
//  Created by Phan Quang Hoang on 8/26/13.
//  Copyright (c) 2013 Phan Quang Hoang. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "CSTextField.h"

@interface AuthenticationView : UIViewController <UITextFieldDelegate, UIAlertViewDelegate>{
    
    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
