| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // BaseLogin_VC.h
- // Haishenghai-master
- //
- // Created by GG on 2018/12/29.
- // Copyright © 2018年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @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
|