// // SignUpInfoViewController.h // kneet // // Created by Jason Lee on 4/23/15. // Copyright (c) 2015 ntels. All rights reserved. // #import "JDTableViewController.h" @class CustomLabel; @class CustomButton; @interface SignUpInfoViewController : JDTableViewController #pragma mark - Properties @property (weak, nonatomic) IBOutlet CustomLabel *lblEmailInfo; @property (weak, nonatomic) IBOutlet CustomLabel *lblSendAgain; @property (weak, nonatomic) IBOutlet CustomLabel *lblSignUpAgain; @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc1; @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc2; @property (weak, nonatomic) IBOutlet CustomButton *btnLogin; @property (weak, nonatomic) IBOutlet CustomLabel *lblSubDesc1; @property (weak, nonatomic) IBOutlet CustomLabel *lblSubDesc2; @property (weak, nonatomic) IBOutlet CustomLabel *lblSubDesc3; #pragma mark - Instance Methods - (IBAction)btnLoginTouched:(id)sender; @end