SignUpInfoViewController.h 951 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // SignUpInfoViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/23/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDTableViewController.h"
  9. @class CustomLabel;
  10. @class CustomButton;
  11. @interface SignUpInfoViewController : JDTableViewController
  12. #pragma mark - Properties
  13. @property (weak, nonatomic) IBOutlet CustomLabel *lblEmailInfo;
  14. @property (weak, nonatomic) IBOutlet CustomLabel *lblSendAgain;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblSignUpAgain;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc1;
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc2;
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnLogin;
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblSubDesc1;
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblSubDesc2;
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblSubDesc3;
  22. #pragma mark - Instance Methods
  23. - (IBAction)btnLoginTouched:(id)sender;
  24. @end