| 123456789101112131415161718192021 |
- //
- // SignUpViewController.h
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 4/7/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface SignUpViewController : UIViewController
- @property (weak, nonatomic) IBOutlet UITextField *editUser;
- @property (weak, nonatomic) IBOutlet UITextField *editEmail;
- @property (weak, nonatomic) IBOutlet UITextField *editpwd;
- @property (weak, nonatomic) IBOutlet UITextField *editcpwd;
- @end
- NS_ASSUME_NONNULL_END
|