Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You will need to reference the Seamless Access SeamlessAccess component library before you can use it. For the Standard implementation, you will always reference through a CDN:.

Code Block
<head>
<!-- Include the Seamless AccessSeamlessAccess Sign in Button & Discovery Service -->
<script src="https://service.seamlessaccess.org/thiss.js"></script>
</head>

...

Code Block
<body>
  <!-- Location for the Seamless AccessSeamlessAccess login button -->
  <div id='putMyLoginButtonHere'></div>
</body>

...

Code Block
<script>
window.onload = function() {
  // Render the Seamless AccessSeamlessAccess button
  thiss.DiscoveryComponent.render({
    loginInitiatorURL: 'https://sp.example.com/Shibboleth.sso/Login?target=https://sp.example.com/',
  }, '#putMyLoginButtonHere');
};
</script>

...