2013-12-13 18:57:43 +00:00
|
|
|
//
|
|
|
|
// SettingsViewController.h
|
|
|
|
// photobackup
|
|
|
|
//
|
|
|
|
// Created by Nick O'Neill on 12/16/13.
|
|
|
|
// Copyright (c) 2013 Nick O'Neill. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@class LAViewController;
|
|
|
|
|
|
|
|
@interface SettingsViewController : UIViewController
|
|
|
|
|
2014-01-16 21:29:55 +00:00
|
|
|
@property(weak) LAViewController* parent;
|
|
|
|
@property IBOutlet UILabel* errors;
|
|
|
|
@property IBOutlet UITextField* server;
|
|
|
|
@property IBOutlet UITextField* username;
|
|
|
|
@property IBOutlet UITextField* password;
|
2013-12-13 18:57:43 +00:00
|
|
|
|
|
|
|
- (IBAction)validate;
|
|
|
|
|
|
|
|
@end
|