-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoginViewController.swift
68 lines (45 loc) · 1.63 KB
/
LoginViewController.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//
// LoginViewController.swift
// runway
//
// Created by Akshaya Jagadeesh on 7/25/20.
// Copyright © 2020 Akshaya Jagadeesh. All rights reserved.
//
import UIKit
import Firebase
import AVFoundation
class LoginViewController: UIViewController {
@IBOutlet weak var usernameField: UITextField!
@IBOutlet weak var passwordField: UITextField!
@IBOutlet weak var logIncorrect: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
@IBAction func logInPressed(_ sender: Any) {
if let email = usernameField?.text, let password = passwordField?.text {
Auth.auth().signIn(withEmail: email, password: password) { [weak self] authResult, error in
guard let strongSelf = self else { return }
if error == nil && authResult != nil {
self?.performSegue(withIdentifier: "toFeed", sender: self)
} else {
print("error: \(error!.localizedDescription)")
self?.reset()
}
}
}
}
func reset() {
usernameField?.text = ""
passwordField?.text = ""
logIncorrect?.isHidden = false
}
/*
// 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.
}
*/
}