Пример #1
0
        private void ContinueBttn_Click(object sender, EventArgs e)
        {
            if (String.IsNullOrEmpty(emailAddressTbx.Text))
            {
                MessageBox.Show("Please, enter your email address.", null, MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }

            if (String.IsNullOrEmpty(passwordTbx.Text))
            {
                MessageBox.Show("Please, enter your password.", null, MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }

            if (!EmailValidation.IsValidEmail(emailAddressTbx.Text))
            {
                MessageBox.Show("Please, enter a valid email address.", null, MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }

            try
            {
                Server.CurrentSession = Server.Login(emailAddressTbx.Text, passwordTbx.Text);
                this.Hide();

                FormMain dashboard = new FormMain();
                dashboard.Show();
                return;
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, null, MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
Пример #2
0
        private void RegisterBtn_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(fNameTbx.Text))
            {
                throw new ApplicationException("Please, enter your first name.");
            }

            if (string.IsNullOrEmpty(lNameTbx.Text))
            {
                throw new ApplicationException("Please, enter your last name.");
            }

            if (string.IsNullOrEmpty(emailAddressTbx.Text) ||
                !EmailValidation.IsValidEmail(emailAddressTbx.Text))
            {
                throw new ApplicationException("Please, enter a valid email address.");
            }

            if (string.IsNullOrEmpty(passwordTbx.Text))
            {
                throw new ApplicationException("Please, enter a password.");
            }

            Server.CurrentSession = Server.CreateUser(emailAddressTbx.Text, fNameTbx.Text, lNameTbx.Text, passwordTbx.Text);

            // User logged in successfully, go to the according page
            FormMain dashboard = new FormMain();

            dashboard.Show();
            Close();
        }
Пример #3
0
        private void RegisterBtn_Click(object sender, EventArgs e)
        {
            if (String.IsNullOrEmpty(fNameTbx.Text))
            {
                MessageBox.Show("Please, enter your first name.", null, MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }

            if (String.IsNullOrEmpty(lNameTbx.Text))
            {
                MessageBox.Show("Please, enter your last name.", null, MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }

            if (String.IsNullOrEmpty(emailAddressTbx.Text))
            {
                MessageBox.Show("Please, enter your email address.", null, MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }

            if (String.IsNullOrEmpty(passwordTbx.Text))
            {
                MessageBox.Show("Please, enter a password", null, MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }

            if (!EmailValidation.IsValidEmail(emailAddressTbx.Text))
            {
                MessageBox.Show("Please, enter a valid email address.", null, MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }

            try
            {
                Server.CurrentSession = Server.CreateUser(emailAddressTbx.Text, fNameTbx.Text, lNameTbx.Text, passwordTbx.Text);

                // User logged in successfully, go to the according page
                this.Hide();
                FormMain dashboard = new FormMain();
                dashboard.Show();
            } catch (Exception ex) {
                MessageBox.Show(ex.Message, null, MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
Пример #4
0
        private void ContinueBttn_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(emailAddressTbx.Text) ||
                !EmailValidation.IsValidEmail(emailAddressTbx.Text))
            {
                throw new ApplicationException("Please, enter a valid email address.");
            }

            if (string.IsNullOrEmpty(passwordTbx.Text))
            {
                throw new ApplicationException("Please, enter your password.");
            }

            Server.CurrentSession = Server.Login(emailAddressTbx.Text, passwordTbx.Text);

            FormMain dashboard = new FormMain();

            dashboard.Show();
            Close();
        }