diff --git a/iphone/Maps/Tourism/Presentation/Auth/Screens/SignInViewController.swift b/iphone/Maps/Tourism/Presentation/Auth/Screens/SignInViewController.swift index 0fd12b28f1..d6b3407fd9 100644 --- a/iphone/Maps/Tourism/Presentation/Auth/Screens/SignInViewController.swift +++ b/iphone/Maps/Tourism/Presentation/Auth/Screens/SignInViewController.swift @@ -192,9 +192,7 @@ class SignInViewController: UIViewController { } @objc private func forgotPasswordTapped() { - if let url = URL(string: "\(BASE_URL)/forgot-password") { - UIApplication.shared.open(url) - } + self.navigationController?.pushViewController(ForgotPasswordViewController(), animated: false) } @objc private func backButtonTapped() { diff --git a/iphone/Maps/Tourism/Presentation/Components/New Group/AppButton.swift b/iphone/Maps/Tourism/Presentation/Components/New Group/AppButton.swift index cd0e8dcfc1..29b272530e 100644 --- a/iphone/Maps/Tourism/Presentation/Components/New Group/AppButton.swift +++ b/iphone/Maps/Tourism/Presentation/Components/New Group/AppButton.swift @@ -52,11 +52,11 @@ class AppButton: UIButton { } private func setSecondaryAppearance() { - setTitleColor(.systemBlue, for: .normal) + setTitleColor(.white, for: .normal) backgroundColor = .clear layer.cornerRadius = 16 layer.borderWidth = 1 - layer.borderColor = UIColor.systemBlue.cgColor + layer.borderColor = UIColor.white.cgColor } // MARK: click animation