global: fix forgot-password

This commit is contained in:
Emin 2024-10-14 11:36:27 +05:00
parent 97e162707b
commit 7950027ddf
2 changed files with 3 additions and 5 deletions

View file

@ -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() {

View file

@ -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