ResetPwdViewController.h 778 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // ResetPwdViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/23/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomTextField;
  10. @class CustomLabel;
  11. @class CustomButton;
  12. @interface ResetPwdViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  15. #pragma mark - Instance Methods
  16. - (IBAction)btnCancelTouched:(id)sender;
  17. @end
  18. @interface ResetEmailTableViewCell : KNTableViewCell
  19. @property (weak, nonatomic) IBOutlet CustomButton *btnFindId;
  20. @end
  21. @interface ResetPasswdTableViewCell : KNTableViewCell
  22. @property (weak, nonatomic) IBOutlet CustomButton *btnFindPasswd;
  23. @property (weak, nonatomic) IBOutlet CustomTextField *txtUserEmail;
  24. @end