30 lines
982 B
Objective-C
30 lines
982 B
Objective-C
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2016 OpenMarket Ltd
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
#import "MatrixKit.h"
|
|
|
|
@interface ForgotPasswordInputsView : MXKAuthInputsView
|
|
|
|
@property (weak, nonatomic) IBOutlet UITextField *emailTextField;
|
|
@property (weak, nonatomic) IBOutlet UITextField *passWordTextField;
|
|
@property (weak, nonatomic) IBOutlet UITextField *repeatPasswordTextField;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIView *emailContainer;
|
|
@property (weak, nonatomic) IBOutlet UIView *passwordContainer;
|
|
@property (weak, nonatomic) IBOutlet UIView *repeatPasswordContainer;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIView *emailSeparator;
|
|
@property (weak, nonatomic) IBOutlet UIView *passwordSeparator;
|
|
@property (weak, nonatomic) IBOutlet UIView *repeatPasswordSeparator;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *messageLabel;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *nextStepButton;
|
|
|
|
@end
|