Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jaisontj/7bd7b652268540011028d80c538d0749 to your computer and use it in GitHub Desktop.
Save jaisontj/7bd7b652268540011028d80c538d0749 to your computer and use it in GitHub Desktop.
import UIKit
class AuthenticationViewController: UIViewController {
@IBOutlet weak var username: UITextField!
@IBOutlet weak var password: UITextField!
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func onLoginButtonClicked(_ sender: UIButton) {
}
@IBAction func onRegisterButtonClicked(_ sender: UIButton) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment