コード例 #1
0
ファイル: Register.cs プロジェクト: nunottlopes/feup-tdin
        private void RegisterAction()
        {
            bool res = authServer.Register(username.Text, name.Text, password.Text);

            if (!res)
            {
                status.Text = "Failed to Register";
            }
            else
            {
                status.Text = "Register Successful";
                WindowManager.getInstance().Register();
            }
        }