LoginViewController.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // LoginViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 2/4/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomTextField2;
  10. @class CustomButton;
  11. @class CustomLabel;
  12. @class CustomCheckBox;
  13. @class CustomImageView;
  14. @interface LoginViewController : JDViewController
  15. #pragma mark - Properties
  16. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtEmail;
  17. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtPasswd;
  18. @property (weak, nonatomic) IBOutlet CustomImageView *imgvBg;
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblSignUp;
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblFindId;
  21. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAutoLogin;
  22. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintLeftPadding;
  23. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintRightPadding;
  24. #pragma mark - Instance Methods
  25. - (void)requestLogout;
  26. - (void)actionAfterLogout;
  27. - (void)actionAfterInvitaion;
  28. - (IBAction)btnLogInTouched:(id)sender;
  29. - (void)actionForLoginSucceed:(LoginModel *)loginInfo;
  30. @end