1
votes

I have a SharePoint 2010 web application that will be accessed by internal employees and outside partners which I would like to use the same url.

I have it set up for Claims based authentication with Windows and Forms based authentication enabled. The default login page looks as follows: enter image description here

I would like to edit the text in the drop-down menu to say "Internal Employees" instead of "Windows Authentication" and "External Partners" instead of "Forms Authentication" as well as change the red error image to the company logo.

1

1 Answers

0
votes

if you don't mind a javascript solution you can do something like this:

http://jsfiddle.net/pxfunc/jXd2H/

var ddlLogin = document.getElementById("[drop down's client ID]");
ddlLogin.options[0].innerText = "Internal Employees";
ddlLogin.options[1].innerText = "External Partners";

You'll need to determine the client ID for the select box or if you know the server-side ID use document.getElementById("<%=LoginTypeDropDown.ClientID %>"); (assuming server-side ID is LoginTypeDropDown)