CINXE.COM
UC DDL(Digital Donor Library) application login
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <title>UC DDL(Digital Donor Library) application login</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-5" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="/shibboleth-ds/idpselect.css" /> <style> html, body { height: 100%; margin: 0; display: flex; align-items: center; justify-content: center; } .centered-div { width: 50%; /* Adjust the width as needed */ max-width: 400px; /* Set a maximum width if necessary */ text-align: center; /* Center the content within the div */ padding: 20px; box-sizing: border-box; /* Include padding in the width calculation */ background-color: #f0f0f0; /* Add a background color or customize as needed */ border: 1px solid #ccc; /* Add a border for better visibility */ } </style> </head> <body> <div id="primaryContainer" class="center-div"> <h1>Log in to DDL via:</h1> <div id="idpSelect"> </div> </div> <!-- <div id="idpSelect"></div> --> <script src="/shibboleth-ds/idpselect_config.js" type="text/javascript" language="javascript"></script> <script src="/shibboleth-ds/idpselect.js" type="text/javascript" language="javascript"></script> <noscript> <!-- If you need to care about non javascript browsers you will need to generate a hyperlink to a non-js DS. To build you will need: - URL: The base URL of the DS you use - EI: Your entityId, URLencoded. You can get this from the line that this page is called with. - RET: Your return address dlib-adidp.ucs.ed.ac.uk. Again you can get this from the page this is called with, but beware of the target%3Dcookie%253A5269905f bit.. < href=${URL}?entityID=${EI}&return=${RET} --> Your Browser does not support javascript. Please use <a href="http://federation.org/DS/DS?entityID=https%3A%2F%2FyourentityId.edu.edu%2Fshibboleth&return=https%3A%2F%2Fyourreturn.edu%2FShibboleth.sso%2FDS%3FSAMLDS%3D1%26target%3Dhttps%3A%2F%2Fyourreturn.edu%2F">this link</a>. </noscript> </body> <script> window.onload= function() { // Hide the div with class "your-div-to-hide" var divToHide = document.querySelector('.IdPSelectDropDownToggle'); console.log(divToHide); if (divToHide) { divToHide.style.display = 'none'; console.log(divToHide); } divToHide = document.querySelector('.IdPSelectHelpButton'); if (divToHide) { divToHide.style.display = 'none'; } var linksToHide = document.querySelectorAll('a'); linksToHide.forEach(function(link) { if (link.textContent.trim() === 'Allow me to specify the site') { link.style.display = 'none'; } if (link.textContent.trim() === 'Help') { link.style.display = 'none'; } }); // Change the label of the button with id "your-button" var buttonToChange = document.getElementById('idpSelectListButton'); if (buttonToChange) { buttonToChange.value = ' Go '; } }; </script> </html>