SignUpViewController.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // SignUpViewController.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 CustomTextField;
  10. @class CustomLabel;
  11. @class CustomButton;
  12. @class CustomCheckBox;
  13. @interface SignUpViewController : JDTableViewController
  14. #pragma mark - Properties
  15. @property (weak, nonatomic) IBOutlet CustomTextField *txtUserName;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblUserName;
  17. @property (weak, nonatomic) IBOutlet CustomTextField *txtUserEmail;
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblUserEmail;
  19. @property (weak, nonatomic) IBOutlet CustomTextField *txtPasswd;
  20. @property (weak, nonatomic) IBOutlet CustomTextField *txtPasswdConfirm;
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblPasswd;
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblTermUse;
  23. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkTermUse;
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblPolicy;
  25. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkPolicy;
  26. @property (weak, nonatomic) IBOutlet CustomLabel *lblLocation;
  27. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkLocation;
  28. @property (weak, nonatomic) IBOutlet CustomLabel *lblMinor;
  29. @property (weak, nonatomic) IBOutlet CustomButton *btnMinor;
  30. @property (weak, nonatomic) IBOutlet CustomButton *btnSignUp;
  31. #pragma mark - Instance Methods
  32. - (IBAction)btnSignUpTouched:(id)sender;
  33. - (IBAction)btnMinorTouched:(id)sender;
  34. @end