cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1643
Views
10
Helpful
0
Comments
Jason Kunst
Cisco Employee
Cisco Employee

This document lists some options you have to insert script after implementing a portal using portal builder

Implement guest portal using SAML SSO provider button

This allows you to point your ISE Portal builder portal to a page configured for SAML SSO login:

 

Put this on your initial guest page under Work Centers > Guest Access > Portals & Components > Portal page customization > Login page > optional content 2

 

It should insert a logo under submit button.

 

 

<script>

setTimeout(function(){

  var aLogin = $('#idp-login-link-icon-container').parent().parent();

  var button = $('.t-button_submit');

  aLogin.insertAfter(button);

}, 5000);

</script>​

How do I implement Facebook Social Media with my guest portal using Portal Builder

Currently we don’t have option to configure Facebook login in ISE Portal builder.

As an alternative can you please try the below script to achieve the facebook login in the Optional content 2 of Login Page in the portal customization.

You can alter the time delay “1500” according to the loading time of your portal. Also you can modify the color of the Facebook login button.

 

<script>
    setTimeout(function(){
        var sLogin = $('[name="selfRegForm1"]'),
        button = $('.t-button_submit');
        sLogin.insertAfter(button);
        $(".fbIconbtn").replaceWith('<div class="t t-button t-button_submit"><div class="b-content-holder" ><input type="submit" id="ui_login_facebook_signon_button" value="Log in With Facebook" class="f-submit-button" style="background-color: rgb(110, 168, 92); border-color: rgb(83, 126, 69);width: auto;"></div></div>');
    }, 1500);
</script><style>
    .t-button_submit{
        text-align: center;
    }   
</style>

 

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community: