Link to home
Start Free TrialLog in
Avatar of CiscoAzn
CiscoAznFlag for United States of America

asked on

ADFS 2.0 Sign in page add hyperlink

How do you add a hyperlink to the ADFS Sign in portal page?
Avatar of Kyle Abrahams, PMP
Kyle Abrahams, PMP
Flag of United States of America image

In the adfs\ls directory where you installed the ADFS (or the proxy) there's a formsignin.aspx.  Add your hyperlink there.
Avatar of CiscoAzn

ASKER

I want to add a disclaimer that's a hyperlink so where exactly would I place this?
anywhere you want on the formssignin.aspx page.  The ASPX page is a normal application page.
Doesn't work. Researching online and its pointing to edit the masterPage.master.cs
The master page is loaded with the content page.  

See below for the content page link.

<asp:Content ID="FormsSignInContent" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
    <div class="GroupXLargeMargin">
     <asp:Label Text="<%$ Resources:CommonResources, FormsSignInHeader%>" runat="server" />*</div>
    <table class="UsernamePasswordTable">
        <tr>
            <td>
                <span class="Label"><asp:Label Text="<%$ Resources:CommonResources, UsernameLabel%>" runat="server" /></span>
            </td>
            <td>
                <asp:TextBox runat="server" ID="UsernameTextBox" ></asp:TextBox>            
            </td>
            <td class="TextColorSecondary TextSizeSmall">
                <asp:Label Text="<%$ Resources:CommonResources, UsernameExample%>" runat="server" />
            </td>
        </tr>
        <tr>
            <td>
                <span class="Label"><asp:Label Text="<%$ Resources:CommonResources, PasswordLabel%>" runat="server" /></span>
            </td>
            <td>
                <asp:TextBox runat="server" ID="PasswordTextBox" TextMode="Password" ></asp:TextBox>            
            </td>
            <td>&nbsp;</td>
        </tr>
        <tr>
            <td></td>
            <td colspan="2" class="TextSizeSmall TextColorError">
                <asp:Label ID="ErrorTextLabel" runat="server" Text="" Visible="False"></asp:Label>
            </td>
        </tr>
        <tr>
            <td colspan="2">
                <div class="RightAlign GroupXLargeMargin">
                    <asp:Button ID="SubmitButton" runat="server" Text="<%$ Resources:CommonResources, FormsSignInButtonText%>" OnClick="SubmitButton_Click" CssClass="Resizable"/>
                </div>
            </td>
            <td>&nbsp;</td>
        </tr>
    </table>
<span style="font-size:.9em">
	<span runat="server" id="ExternalUserAlert"> 
                       <a href="https://google.com">click here</a>
        </span>
</span>
</asp:Content>

Open in new window

Doesn't work.  I just tried your sample and it did not work. Most of the edits I've done has been on the Master Page but it still won't take the hyperlink.
are you sure that you're making the change on the correct server?  If there's a farm are you editing it on all servers?

Also try clearing your cache?  

the master page is a web page with placeholders for content pages so you get the same look and feel.  Both the master page and the formssigninpage will get loaded and run.
We only have one server and I clear the cache and restarted the services. Text and hyperlink doesn't show up and it breaks the other SSO logins.
ASKER CERTIFIED SOLUTION
Avatar of Kyle Abrahams, PMP
Kyle Abrahams, PMP
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
This didn't resolve my issue but thanks for helping.