| 123456789101112131415161718192021222324252627282930 |
- //
- // ResetPwdViewController.h
- // kneet
- //
- // Created by Jason Lee on 4/23/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomTextField2;
- @class CustomLabel;
- @class CustomButton;
- @interface ResetPwdViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomTextField2 *txtUserEmail;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
- @property (weak, nonatomic) IBOutlet CustomButton *btnRequestEmail;
- #pragma mark - Instance Methods
- - (IBAction)btnRequestEmailTouched:(id)sender;
- @end
|