Skip to content

Commit

Permalink
Creating Login
Browse files Browse the repository at this point in the history
  • Loading branch information
Cscotttaakan committed Jan 5, 2019
1 parent ac65ff7 commit 6864262
Show file tree
Hide file tree
Showing 8 changed files with 144 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Stocks.io/Assets.xcassets/key.imageset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "key.pdf",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
Binary file added Stocks.io/Assets.xcassets/key.imageset/key.pdf
Binary file not shown.
21 changes: 21 additions & 0 deletions Stocks.io/Assets.xcassets/mail.imageset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "mail.pdf",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
Binary file added Stocks.io/Assets.xcassets/mail.imageset/mail.pdf
Binary file not shown.
30 changes: 30 additions & 0 deletions Stocks.io/Controller/LoginViewController.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
//
// LoginViewController.swift
// Stocks.io
//
// Created by Craig Scott on 1/4/19.
// Copyright © 2019 Craig Scott. All rights reserved.
//

import UIKit

class LoginViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()

// Do any additional setup after loading the view.
}


/*
// 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.
}
*/

}
30 changes: 30 additions & 0 deletions Stocks.io/Controller/RegisterViewController.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
//
// RegisterViewController.swift
// Stocks.io
//
// Created by Craig Scott on 1/5/19.
// Copyright © 2019 Craig Scott. All rights reserved.
//

import UIKit

class RegisterViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()

// Do any additional setup after loading the view.
}


/*
// 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.
}
*/

}
21 changes: 21 additions & 0 deletions Stocks.io/Views/LoginTextField.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
//
// LoginTextField.swift
// Stocks.io
//
// Created by Craig Scott on 1/4/19.
// Copyright © 2019 Craig Scott. All rights reserved.
//

import UIKit

class LoginTextField: UITextField {

/*
// Only override draw() if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
override func draw(_ rect: CGRect) {
// Drawing code
}
*/

}
21 changes: 21 additions & 0 deletions Stocks.io/Views/RoundedButton.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
//
// RoundedButton.swift
// Stocks.io
//
// Created by Craig Scott on 1/5/19.
// Copyright © 2019 Craig Scott. All rights reserved.
//

import UIKit

class RoundedButton: UIButton {

/*
// Only override draw() if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
override func draw(_ rect: CGRect) {
// Drawing code
}
*/

}

0 comments on commit 6864262

Please sign in to comment.