SignUpViewController.h 541 B

123456789101112131415161718192021
  1. //
  2. // SignUpViewController.h
  3. // HMLG Scan Order
  4. //
  5. // Created by Rui Zhang on 4/7/22.
  6. // Copyright © 2022 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface SignUpViewController : UIViewController
  11. @property (weak, nonatomic) IBOutlet UITextField *editUser;
  12. @property (weak, nonatomic) IBOutlet UITextField *editEmail;
  13. @property (weak, nonatomic) IBOutlet UITextField *editpwd;
  14. @property (weak, nonatomic) IBOutlet UITextField *editcpwd;
  15. @end
  16. NS_ASSUME_NONNULL_END