Reset Password

@if (showError) {
Reset Password Failed!
An Error Occurred

Some required information is missing, or a technical issue has occurred.

Please check the reset-password link or contact support if the issue persists.

} @if (isSuccess) {
Password Reset Successful!
Your Password Has Been Reset

You can now log in with your new password.

If you encounter any issues, please contact support.

} @if(resetPasswordForm && (!showError && !isSuccess)) {
@if (password?.hasError && (password?.dirty || !password?.untouched)) {
@if (password?.hasError('required')) {

Password is required

} @if (!password?.hasError('required')) {
Must have at least 1 number!
Must be at least 8 characters long!
Must contain at least 1 in capital letters!
Must contain at least 1 lowercase letter!
Must contain at least 1 special character!
}
}
@if (confirmPassword?.errors && (confirmPassword?.dirty || !confirmPassword?.untouched)) {
@if (confirmPassword?.hasError('required')) {

Repeat password is required

} @if (confirmPassword?.hasError('passwordMismatch')) {

Passwords do not match

}
}
}