TempPwViewController.h 551 B

1234567891011121314151617181920212223
  1. //
  2. // TempPwViewController.h
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 3. 31..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomButton;
  10. @class CustomLabel;
  11. @class CustomTextField;
  12. @interface TempPwViewController : JDViewController
  13. @property (weak, nonatomic) IBOutlet CustomTextField *txtPwInput;
  14. @property (weak, nonatomic) IBOutlet CustomTextField *txtPwReInput;
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
  16. @property (weak, nonatomic) IBOutlet CustomButton *btnNext;
  17. @end