At this point, I think I'll recommend getting the user to authenticate before you show the UIWebView.
Show two UITextFields and then load your UIWebView something like this:
NSString *URLString = [[NSString stringWithFormat:@"%@:%@@https://portal.velti.com",
userNameField.text,
passwordField.text]
stringByAddingPercentEscapesUsingEncoding:NSUTF8Encoding];
NSURL *URL = [NSURL URLWithString:URLString];
NSURLRequest *req = [NSURLRequest requestWithURL:URL];
[webView loadRequest:req];
You can also run that NSURLRequest before you get to the webView part and double check that the user's credentials are right. If you get a 401 code from the server after submitting the username & password the credentials are incorrect.
Good luck,
Aurum Aquila