Exemplo n.º 1
0
        /// <summary>
        /// Calls DAO method to authenticate the player.
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void btnLogin_Click(object sender, EventArgs e)
        {
            bool passMatches = playerDAO.AuthenticatePlayer(txtLoginEmail.Text, txtLoginPass.Text);

            if (passMatches)
            {
                Session["currentEmail"] = txtLoginEmail.Text;
                FormsAuthentication.RedirectFromLoginPage(Session["currentEmail"].ToString(), false);
            }
            else
            {
                lblAuthFail.Text        = "Authentication failed. Please try again.";
                lblAuthFail.Font.Size   = 18;
                lblAuthFail.Font.Italic = true;
                lblAuthFail.Font.Bold   = true;
                lblAuthFail.Visible     = true;
            }
        }