forked from organicmaps/organicmaps
global: fix forgot-password
This commit is contained in:
parent
97e162707b
commit
7950027ddf
2 changed files with 3 additions and 5 deletions
|
@ -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() {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue