123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // LoginViewController.swift
- // EncuestaMarle
- //
- // Created by Tatiana Castro on 5/20/19.
- // Copyright © 2019 Marle. All rights reserved.
- //
-
- import UIKit
- import FirebaseAuth
-
- class LoginViewController: UIViewController {
-
- @IBOutlet weak var email: UITextField!
- @IBOutlet weak var password: UITextField!
-
- @IBAction func loginAction(_ sender: Any) {
- print("hey")
- Auth.auth().signIn(withEmail: email.text!, password: password.text!){ (user, error) in
- if error == nil{
- self.performSegue(withIdentifier: "loginToHome", sender: self)
- }
- else{
- let alertController = UIAlertController(title: "Error", message: error?.localizedDescription, preferredStyle: .alert)
- let defaultAction = UIAlertAction(title: "OK", style: .cancel, handler: nil)
-
- alertController.addAction(defaultAction)
- self.present(alertController, animated: true, completion: nil)
- }
- }
-
- }
-
- override func viewDidLoad() {
- super.viewDidLoad()
- }
-
- /*
- // MARK: - Navigation
-
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
- // Get the new view controller using segue.destination.
- // Pass the selected object to the new view controller.
- }
- */
-
- }
|