| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // SignUpViewController.h
- // kneet
- //
- // Created by Jason Lee on 4/23/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDTableViewController.h"
- @class CustomTextField;
- @class CustomLabel;
- @class CustomButton;
- @class CustomCheckBox;
- @interface SignUpViewController : JDTableViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomTextField *txtUserName;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblUserName;
- @property (weak, nonatomic) IBOutlet CustomTextField *txtUserEmail;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblUserEmail;
- @property (weak, nonatomic) IBOutlet CustomTextField *txtPasswd;
- @property (weak, nonatomic) IBOutlet CustomTextField *txtPasswdConfirm;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblPasswd;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTermUse;
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkTermUse;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblPolicy;
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkPolicy;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblLocation;
- @property (weak, nonatomic) IBOutlet CustomCheckBox *chkLocation;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblMinor;
- @property (weak, nonatomic) IBOutlet CustomButton *btnMinor;
- @property (weak, nonatomic) IBOutlet CustomButton *btnSignUp;
- #pragma mark - Instance Methods
- - (IBAction)btnSignUpTouched:(id)sender;
- - (IBAction)btnMinorTouched:(id)sender;
- @end
|