mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-05 06:14:59 +00:00
21 lines
539 B
Swift
21 lines
539 B
Swift
![]() |
//
|
||
|
// RegistrationConsentViewController.swift
|
||
|
// CovidSafe
|
||
|
//
|
||
|
// Copyright © 2020 Australian Government. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
class RegistrationConsentViewController: UIViewController {
|
||
|
|
||
|
@IBAction func onBackTapped(_ sender: UIButton) {
|
||
|
self.navigationController?.popViewController(animated: true)
|
||
|
}
|
||
|
|
||
|
@IBAction func onAgreeTapped(sender: UIButton) {
|
||
|
UserDefaults.standard.set(true, forKey: "hasConsented")
|
||
|
performSegue(withIdentifier: "iConsentSegue", sender: nil)
|
||
|
}
|
||
|
}
|