CCLogin.m 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. //
  2. // CCLogin.m
  3. // Nextcloud iOS
  4. //
  5. // Created by Marino Faggiana on 09/04/15.
  6. // Copyright (c) 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import "CCLogin.h"
  24. #import "AppDelegate.h"
  25. #import "CCUtility.h"
  26. #import "NCBridgeSwift.h"
  27. #import "NCNetworkingSync.h"
  28. @interface CCLogin ()
  29. {
  30. AppDelegate *appDelegate;
  31. UIView *rootView;
  32. }
  33. @end
  34. @implementation CCLogin
  35. - (void)viewDidLoad
  36. {
  37. [super viewDidLoad];
  38. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  39. self.imageBrand.image = [UIImage imageNamed:@"loginLogo"];
  40. self.login.backgroundColor = [NCBrandColor sharedInstance].customer;
  41. // Bottom label
  42. self.bottomLabel.text = NSLocalizedString([NCBrandOptions sharedInstance].textLoginProvider, nil);
  43. self.bottomLabel.userInteractionEnabled = YES;
  44. if ([NCBrandOptions sharedInstance].disable_linkLoginProvider) {
  45. self.bottomLabel.hidden = YES;
  46. } else {
  47. if (self.view.frame.size.width == ([[UIScreen mainScreen] bounds].size.width*([[UIScreen mainScreen] bounds].size.width<[[UIScreen mainScreen] bounds].size.height))+([[UIScreen mainScreen] bounds].size.height*([[UIScreen mainScreen] bounds].size.width>[[UIScreen mainScreen] bounds].size.height))) {
  48. // Portrait
  49. self.bottomLabel.hidden = NO;
  50. } else {
  51. // Landscape
  52. self.bottomLabel.hidden = YES;
  53. }
  54. }
  55. UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tabBottomLabel)];
  56. [self.bottomLabel addGestureRecognizer:tapGesture];
  57. self.annulla.tintColor = [NCBrandColor sharedInstance].customer;
  58. [self.baseUrl setDelegate:self];
  59. [self.password setDelegate:self];
  60. [self.user setDelegate:self];
  61. [self.baseUrl setFont:[UIFont systemFontOfSize:13]];
  62. [self.user setFont:[UIFont systemFontOfSize:13]];
  63. [self.password setFont:[UIFont systemFontOfSize:13]];
  64. self.imageBaseUrl.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"loginURL"] color:[NCBrandColor sharedInstance].customer];
  65. self.imageUser.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"loginUser"] color:[NCBrandColor sharedInstance].customer];
  66. self.imagePassword.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"loginPassword"] color:[NCBrandColor sharedInstance].customer];
  67. self.loadingBaseUrl.image = [UIImage animatedImageWithAnimatedGIFURL:[[NSBundle mainBundle] URLForResource: @"loading@2x" withExtension:@"gif"]];
  68. self.loadingBaseUrl.hidden = YES;
  69. // Brand
  70. if ([NCBrandOptions sharedInstance].disable_request_login_url) {
  71. _baseUrl.text = [NCBrandOptions sharedInstance].loginBaseUrl;
  72. _imageBaseUrl.hidden = YES;
  73. _baseUrl.hidden = YES;
  74. }
  75. if (_loginType == loginAdd) {
  76. // Login Flow ?
  77. if ([NCBrandOptions sharedInstance].use_login_web_flow) {
  78. _imageUser.hidden = YES;
  79. _user.hidden = YES;
  80. _imagePassword.hidden = YES;
  81. _password.hidden = YES;
  82. }
  83. }
  84. if (_loginType == loginAddForced) {
  85. _annulla.hidden = YES;
  86. // Login Flow ?
  87. if ([NCBrandOptions sharedInstance].use_login_web_flow) {
  88. _imageUser.hidden = YES;
  89. _user.hidden = YES;
  90. _imagePassword.hidden = YES;
  91. _password.hidden = YES;
  92. }
  93. }
  94. if (_loginType == loginModifyPasswordUser) {
  95. _baseUrl.text = appDelegate.activeUrl;
  96. _baseUrl.userInteractionEnabled = NO;
  97. _baseUrl.textColor = [UIColor lightGrayColor];
  98. _user.text = appDelegate.activeUser;
  99. _user.userInteractionEnabled = NO;
  100. _user.textColor = [UIColor lightGrayColor];
  101. }
  102. self.baseUrl.placeholder = NSLocalizedString(@"_login_url_", nil);
  103. self.user.placeholder = NSLocalizedString(@"_username_", nil);
  104. self.password.placeholder = NSLocalizedString(@"_password_", nil);
  105. [self.annulla setTitle:NSLocalizedString(@"_cancel_", nil) forState:UIControlStateNormal];
  106. [self.login setTitle:NSLocalizedString(@"_login_", nil) forState:UIControlStateNormal];
  107. [self.traditionalLogin setTitle:NSLocalizedString(@"_traditional_login_", nil) forState:UIControlStateNormal];
  108. [self.traditionalLogin setTitleColor:[NCBrandColor sharedInstance].customer forState:UIControlStateNormal];
  109. }
  110. - (void)viewWillAppear:(BOOL)animated
  111. {
  112. [super viewWillAppear:animated];
  113. // verify URL
  114. if (_loginType == loginModifyPasswordUser && [self.baseUrl.text length] > 0)
  115. [self testUrl];
  116. }
  117. // E' apparsa
  118. - (void)viewDidAppear:(BOOL)animated
  119. {
  120. [super viewDidAppear:animated];
  121. }
  122. //
  123. - (void)viewDidDisappear:(BOOL)animated
  124. {
  125. [super viewDidDisappear:animated];
  126. if ([self.delegate respondsToSelector:@selector(loginDisappear)])
  127. [self.delegate loginDisappear];
  128. }
  129. - (BOOL)textFieldShouldReturn:(UITextField *)textField
  130. {
  131. [textField resignFirstResponder];
  132. return YES;
  133. }
  134. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
  135. {
  136. [coordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {
  137. if (![NCBrandOptions sharedInstance].disable_linkLoginProvider) {
  138. if (self.view.frame.size.width == ([[UIScreen mainScreen] bounds].size.width*([[UIScreen mainScreen] bounds].size.width<[[UIScreen mainScreen] bounds].size.height))+([[UIScreen mainScreen] bounds].size.height*([[UIScreen mainScreen] bounds].size.width>[[UIScreen mainScreen] bounds].size.height))) {
  139. // Portrait
  140. self.bottomLabel.hidden = NO;
  141. } else {
  142. // Landscape
  143. self.bottomLabel.hidden = YES;
  144. }
  145. }
  146. }];
  147. [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
  148. }
  149. #pragma --------------------------------------------------------------------------------------------
  150. #pragma mark == Chech Server URL ==
  151. #pragma --------------------------------------------------------------------------------------------
  152. - (void)testUrl
  153. {
  154. self.login.enabled = NO;
  155. self.loadingBaseUrl.hidden = NO;
  156. // Check whether baseUrl contain protocol. If not add https:// by default.
  157. if(![self.baseUrl.text hasPrefix:@"https"] && ![self.baseUrl.text hasPrefix:@"http"]) {
  158. self.baseUrl.text = [NSString stringWithFormat:@"https://%@",self.baseUrl.text];
  159. }
  160. // Remove stored cookies
  161. NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
  162. for (NSHTTPCookie *cookie in [storage cookies])
  163. {
  164. [storage deleteCookie:cookie];
  165. }
  166. // Test Login Flow
  167. if ([self.baseUrl.text length] > 0 && _user.hidden && _password.hidden) {
  168. NSString *urlBase = self.baseUrl.text;
  169. // Remove trailing slash
  170. if ([self.baseUrl.text hasSuffix:@"/"])
  171. urlBase = [self.baseUrl.text substringToIndex:[self.baseUrl.text length] - 1];
  172. // Add end point flow
  173. urlBase = [urlBase stringByAppendingString:flowEndpoint];
  174. NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:urlBase] cachePolicy:0 timeoutInterval:20.0];
  175. [request addValue:[CCUtility getUserAgent] forHTTPHeaderField:@"User-Agent"];
  176. [request addValue:@"true" forHTTPHeaderField:@"OCS-APIRequest"];
  177. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  178. NSURLSession *session = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  179. NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler: ^(NSData *data, NSURLResponse *response, NSError *error) {
  180. dispatch_async(dispatch_get_main_queue(), ^{
  181. self.login.enabled = YES;
  182. self.loadingBaseUrl.hidden = YES;
  183. if (error) {
  184. if ([error code] == NSURLErrorServerCertificateUntrusted) {
  185. [[CCCertificate sharedManager] presentViewControllerCertificateWithTitle:[error localizedDescription] viewController:self delegate:self];
  186. } else {
  187. _traditionalLogin.hidden = true;
  188. _imageUser.hidden = NO;
  189. _user.hidden = NO;
  190. _imagePassword.hidden = NO;
  191. _password.hidden = NO;
  192. }
  193. } else {
  194. appDelegate.activeLoginWeb = [CCLoginWeb new];
  195. appDelegate.activeLoginWeb.loginType = _loginType;
  196. appDelegate.activeLoginWeb.delegate = (id<CCLoginDelegateWeb>)self.delegate;
  197. appDelegate.activeLoginWeb.urlBase = urlBase;
  198. [self dismissViewControllerAnimated:YES completion: ^{
  199. [appDelegate.activeLoginWeb presentModalWithDefaultTheme:(UIViewController *)self.delegate];
  200. }];
  201. }
  202. });
  203. }];
  204. [task resume];
  205. } else {
  206. NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:self.baseUrl.text] cachePolicy:0 timeoutInterval:20.0];
  207. [request addValue:[CCUtility getUserAgent] forHTTPHeaderField:@"User-Agent"];
  208. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  209. NSURLSession *session = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  210. NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler: ^(NSData *data, NSURLResponse *response, NSError *error) {
  211. dispatch_async(dispatch_get_main_queue(), ^{
  212. self.login.enabled = YES;
  213. self.loadingBaseUrl.hidden = YES;
  214. if (error != nil) {
  215. // self signed certificate
  216. if ([error code] == NSURLErrorServerCertificateUntrusted) {
  217. [[CCCertificate sharedManager] presentViewControllerCertificateWithTitle:[error localizedDescription] viewController:self delegate:self];
  218. } else {
  219. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_connection_error_", nil) message:[error localizedDescription] preferredStyle:UIAlertControllerStyleAlert];
  220. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  221. [alertController addAction:okAction];
  222. [self presentViewController:alertController animated:YES completion:nil];
  223. }
  224. }
  225. });
  226. }];
  227. [task resume];
  228. }
  229. }
  230. - (void)trustedCerticateAccepted
  231. {
  232. NSLog(@"[LOG] Certificate trusted");
  233. }
  234. - (void)trustedCerticateDenied
  235. {
  236. if (_loginType == loginModifyPasswordUser)
  237. [self handleAnnulla:self];
  238. }
  239. -(void)URLSession:(NSURLSession *)session didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition, NSURLCredential * _Nullable))completionHandler
  240. {
  241. // The pinnning check
  242. if ([[CCCertificate sharedManager] checkTrustedChallenge:challenge]) {
  243. completionHandler(NSURLSessionAuthChallengeUseCredential, [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]);
  244. } else {
  245. completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
  246. }
  247. }
  248. #pragma --------------------------------------------------------------------------------------------
  249. #pragma mark == Login ==
  250. #pragma --------------------------------------------------------------------------------------------
  251. - (void)loginCloudUrl:(NSString *)url user:(NSString *)user password:(NSString *)password
  252. {
  253. NSError *error = [[NCNetworkingSync sharedManager] checkServer:[NSString stringWithFormat:@"%@%@", url, webDAV] user:user userID:user password:password];
  254. dispatch_async(dispatch_get_main_queue(), ^{
  255. self.login.enabled = NO;
  256. self.loadingBaseUrl.hidden = NO;
  257. if (!error) {
  258. // account
  259. NSString *account = [NSString stringWithFormat:@"%@ %@", user, url];
  260. if (_loginType == loginModifyPasswordUser) {
  261. // Change Password
  262. tableAccount *tbAccount = [[NCManageDatabase sharedInstance] setAccountPassword:account password:password];
  263. // Setting appDelegate active account
  264. [appDelegate settingActiveAccount:tbAccount.account activeUrl:tbAccount.url activeUser:tbAccount.user activeUserID:tbAccount.userID activePassword:tbAccount.password];
  265. // Dismiss
  266. if ([self.delegate respondsToSelector:@selector(loginSuccess:)])
  267. [self.delegate loginSuccess:_loginType];
  268. [self dismissViewControllerAnimated:YES completion:nil];
  269. } else {
  270. [[NCManageDatabase sharedInstance] deleteAccount:account];
  271. [[NCManageDatabase sharedInstance] addAccount:account url:url user:user password:password loginFlow:false];
  272. // Read User Profile
  273. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:account];
  274. metadataNet.action = actionGetUserProfile;
  275. [appDelegate.netQueue addOperation:[[OCnetworking alloc] initWithDelegate:self metadataNet:metadataNet withUser:user withUserID:user withPassword:password withUrl:url]];
  276. }
  277. } else {
  278. if ([error code] != NSURLErrorServerCertificateUntrusted) {
  279. NSString *description = [error.userInfo objectForKey:@"NSLocalizedDescription"];
  280. NSString *message = [NSString stringWithFormat:@"%@.\n%@", NSLocalizedStringFromTable(@"_not_possible_connect_to_server_", @"Error", nil), description];
  281. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  282. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  283. [alertController addAction:okAction];
  284. [self presentViewController:alertController animated:YES completion:nil];
  285. }
  286. }
  287. self.login.enabled = YES;
  288. self.loadingBaseUrl.hidden = YES;
  289. });
  290. }
  291. #pragma --------------------------------------------------------------------------------------------
  292. #pragma mark ==== User Profile ====
  293. #pragma --------------------------------------------------------------------------------------------
  294. - (void)getUserProfileFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  295. {
  296. [[NCManageDatabase sharedInstance] deleteAccount:metadataNet.account];
  297. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  298. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  299. [alertController addAction:okAction];
  300. [self presentViewController:alertController animated:YES completion:nil];
  301. }
  302. - (void)getUserProfileSuccess:(CCMetadataNet *)metadataNet userProfile:(OCUserProfile *)userProfile
  303. {
  304. // Verify if the account already exists
  305. if (userProfile.id.length > 0 && self.baseUrl.text.length > 0 && self.user.text.length > 0) {
  306. tableAccount *accountAlreadyExists = [[NCManageDatabase sharedInstance] getAccountWithPredicate:[NSPredicate predicateWithFormat:@"url = %@ AND user = %@ AND userID != %@", self.baseUrl.text, userProfile.id, self.user.text]];
  307. if (accountAlreadyExists) {
  308. [[NCManageDatabase sharedInstance] deleteAccount:metadataNet.account];
  309. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:[NSString stringWithFormat:NSLocalizedString(@"_account_already_exists_", nil), userProfile.id] preferredStyle:UIAlertControllerStyleAlert];
  310. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  311. [alertController addAction:okAction];
  312. [self presentViewController:alertController animated:YES completion:nil];
  313. return;
  314. }
  315. }
  316. // Verify if account is a valid account
  317. tableAccount *account = [[NCManageDatabase sharedInstance] getAccountWithPredicate:[NSPredicate predicateWithFormat:@"account = %@", metadataNet.account]];
  318. if (account) {
  319. // Update User (+ userProfile.id)
  320. [[NCManageDatabase sharedInstance] setAccountsUserProfile:userProfile];
  321. // Set this account as default
  322. tableAccount *account = [[NCManageDatabase sharedInstance] setAccountActive:metadataNet.account];
  323. if (account) {
  324. // Setting appDelegate active account
  325. [appDelegate settingActiveAccount:account.account activeUrl:account.url activeUser:account.user activeUserID:account.userID activePassword:account.password];
  326. // Ok ! Dismiss
  327. if ([self.delegate respondsToSelector:@selector(loginSuccess:)])
  328. [self.delegate loginSuccess:_loginType];
  329. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  330. [self dismissViewControllerAnimated:YES completion:nil];
  331. });
  332. }
  333. }
  334. }
  335. #pragma --------------------------------------------------------------------------------------------
  336. #pragma mark == TextField ==
  337. #pragma --------------------------------------------------------------------------------------------
  338. -(void)textFieldDidBeginEditing:(UITextField *)textField
  339. {
  340. if (textField == self.password) {
  341. self.toggleVisiblePassword.hidden = NO;
  342. self.password.defaultTextAttributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0f], NSForegroundColorAttributeName: [UIColor darkGrayColor]};
  343. }
  344. }
  345. -(void)textFieldDidEndEditing:(UITextField *)textField
  346. {
  347. if (textField == self.password) {
  348. self.toggleVisiblePassword.hidden = YES;
  349. self.password.defaultTextAttributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0f], NSForegroundColorAttributeName: [UIColor darkGrayColor]};
  350. }
  351. }
  352. #pragma --------------------------------------------------------------------------------------------
  353. #pragma mark == Action ==
  354. #pragma --------------------------------------------------------------------------------------------
  355. - (void)tabBottomLabel
  356. {
  357. [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NCBrandOptions sharedInstance].linkLoginProvider]];
  358. }
  359. - (IBAction)handlebaseUrlchange:(id)sender
  360. {
  361. if ([self.baseUrl.text length] > 0 && !_user.hidden && !_password.hidden)
  362. [self performSelector:@selector(testUrl) withObject:nil];
  363. }
  364. - (IBAction)handleButtonLogin:(id)sender
  365. {
  366. if ([self.baseUrl.text length] > 0 && _user.hidden && _password.hidden) {
  367. [self testUrl];
  368. return;
  369. }
  370. if ([self.baseUrl.text length] > 0 && [self.user.text length] && [self.password.text length]) {
  371. // remove last char if /
  372. if ([[self.baseUrl.text substringFromIndex:[self.baseUrl.text length] - 1] isEqualToString:@"/"])
  373. self.baseUrl.text = [self.baseUrl.text substringToIndex:[self.baseUrl.text length] - 1];
  374. NSString *url = self.baseUrl.text;
  375. NSString *user = self.user.text;
  376. NSString *password = self.password.text;
  377. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  378. [self loginCloudUrl:url user:user password:password];
  379. });
  380. }
  381. }
  382. - (IBAction)handleAnnulla:(id)sender
  383. {
  384. [self dismissViewControllerAnimated:YES completion:nil];
  385. }
  386. - (IBAction)handleToggleVisiblePassword:(id)sender
  387. {
  388. NSString *currentPassword = self.password.text;
  389. self.password.secureTextEntry = ! self.password.secureTextEntry;
  390. self.password.text = @"";
  391. self.password.text = currentPassword;
  392. self.password.defaultTextAttributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0f], NSForegroundColorAttributeName: [UIColor darkGrayColor]};
  393. }
  394. - (IBAction)handleTraditionalLogin:(id)sender
  395. {
  396. _traditionalLogin.hidden = true;
  397. _imageUser.hidden = NO;
  398. _user.hidden = NO;
  399. _imagePassword.hidden = NO;
  400. _password.hidden = NO;
  401. }
  402. @end