// // BaseLogin_VC.h // Haishenghai-master // // Created by GG on 2018/12/29. // Copyright © 2018年 Haishenghai intelligence network technology. All rights reserved. // #import @interface BaseLogin_VC : UIViewController /** 背景图 */ @property (nonatomic,strong) UIImageView *bgImageView; /** 内容视图*/ @property (nonatomic,strong) UIView *containerView; /** logo */ @property (nonatomic,strong) UIImageView *logoImageView; /** 账号 */ @property (nonatomic,strong) UITextField *accountTF; /** 手机号 */ @property (nonatomic,strong) UITextField *phoneTf; /** 验证码 */ @property (nonatomic,strong)UITextField *smsCodeTF; /** 密码 */ @property (nonatomic,strong) UITextField *passwordTF; /** 确认密码 */ @property (nonatomic,strong)UITextField *confirmPasswordTf; /** 登录按钮 */ @property (nonatomic,strong) UIButton *loginButton; /** 注册按钮 */ @property (nonatomic,strong) UIButton *registButton; /** 重置密码 */ @property (nonatomic,strong) UIButton *resetPasswordBtn; /** 记住账户 */ @property (nonatomic,strong) UIButton *rememberBtn; /** 返回按钮 */ @property (nonatomic,strong) UIButton *backBtn; /** 返回label */ @property (nonatomic,strong) UILabel *backLabel; @end