
#import "authtest.h"

@implementation authtest

- (int)validateUser
{
    int ret;
    ret = NXRunAlertPanel("Bob is watching you",
    			"Which phrase best describes Bob?",
    			"Bob is really cool",
			"Bob is the master of slack",
			"Bob is my cousin");
    if (ret == 0)
	return [super validateUser];
    else return 0;
}

@end
