| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // ResetPwdViewController.h
- // kneet
- //
- // Created by Jason Lee on 4/23/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomTextField;
- @class CustomLabel;
- @class CustomButton;
- @interface ResetPwdViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
- #pragma mark - Instance Methods
- - (IBAction)btnCancelTouched:(id)sender;
- @end
- @interface ResetEmailTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomButton *btnFindId;
- @end
- @interface ResetPasswdTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomButton *btnFindPasswd;
- @property (weak, nonatomic) IBOutlet CustomTextField *txtUserEmail;
- @end
|