ResetPwdViewController.h 659 B

123456789101112131415161718192021222324252627282930
  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 CustomTextField2;
  10. @class CustomLabel;
  11. @class CustomButton;
  12. @interface ResetPwdViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtUserEmail;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnRequestEmail;
  18. #pragma mark - Instance Methods
  19. - (IBAction)btnRequestEmailTouched:(id)sender;
  20. @end