Beispiel #1
0
        public AddGuestPage(IBusiness business, Frame frame, GuestSignInPage Guest_sign_in_page)
        {
            InitializeComponent();
            Business        = business;
            Frame           = frame;
            GuestSignInPage = Guest_sign_in_page;

            EmailValidator = new EmailValidator(email, email_error);

            Validators = new List <IValidator>()
            {
                new RequiredTextValidator(first_name, first_name_error,
                                          control => Regex.Match(control.Text, @"^[a-z ,.'-]+$", RegexOptions.IgnoreCase).Success ? "" : "Error: Cannot have these symbols in your name."
                                          ),

                new RequiredTextValidator(last_name, last_name_error,
                                          control => Regex.Match(control.Text, @"^[a-z ,.'-]+$", RegexOptions.IgnoreCase).Success ? "" : "Error: Cannot have these symbols in your name."
                                          ),

                EmailValidator,

                new PhoneValidator(phone, phone_error),

                new PasswordValidator(password, password_error),

                new PasswordValidator(repeat_password, repeat_password_error,
                                      control => control.Password != password.Password ? "Error: Passwords do not match." : ""
                                      )
            };
        }
Beispiel #2
0
        private void SignUp(object sender, RoutedEventArgs e)
        {
            first_name.Text = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(first_name.Text.ToLower());
            last_name.Text  = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(last_name.Text.ToLower());

            if (!Validate())
            {
                return;
            }

            try {
                Business.AddGuest(new Guest(first_name.Text, last_name.Text, email.Text, phone.Text, password.Password));
                EmailValidator.ResetError();

                GuestSignInPage.email.Text        = email.Text;
                GuestSignInPage.password.Password = password.Password;
                Frame.GoBack();
                GuestSignInPage.SignIn();
            } catch (EmailExistsException) {
                EmailValidator.SetError("Error: A Guest already exists with this email. Try signing in instead.");
            }
        }