IdFindCompleteViewController.h 685 B

1234567891011121314151617181920212223
  1. //
  2. // IdFindCompleteViewController.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 CustomLabel;
  10. @class CustomButton;
  11. @interface IdFindCompleteViewController : JDViewController
  12. @property (weak, nonatomic) IBOutlet CustomLabel *lblStep;
  13. @property (weak, nonatomic) IBOutlet CustomLabel *lblUserId; // 사용자 아이디
  14. @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm; // 확인 버튼
  15. @property (weak, nonatomic) IBOutlet CustomButton *btnPwFind; // 비밀번호 찾기 버튼
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblUserName; // 사용자 명
  17. @end