Since you posted this in the dev forum, I assume you are able to edit the source code. If so, you can hide the login and search controls in the page load event of the login page. Open the code behind for the page Website/gs/pages/login.ascx and add a couple lines:
Code:protected void Page_Load(object sender, EventArgs e)
{
this.GalleryControl.ShowLogin = false;
this.GalleryControl.ShowSearch = false;
... rest of function not shown...
}
Roger Martin
Creator and Lead Developer of Gallery Server Pro