'Why does this code show Expired Session but when you simply click link the link works?

Here is the main code I am having an issue with. I am using an html widget on RiseVision to show a current wait list for student advisors. This code basicly says "Expired Session" meanwhile if you just click the link "https://clevelandstatecc.starfishsolutions.com/starfish-ops/kiosk/waitingRoom.html?isAdmin=true&kioskId=142" it works perfectly.

<!DOCTYPE html>
<html>
<head lang="en">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta charset="UTF-8">
    <title>Waiting List</title>
</head>
<body>
<div style="width: 100%; height: 850px;">
  <div style="width: 100%; height: 850px; float: left; margin-right: 8px; border: 2px; border-color: blue;">
      <iframe src="https://clevelandstatecc.starfishsolutions.com/starfish-ops/kiosk/waitingRoom.html?isAdmin=true&kioskId=142" style="height: 100%; width: 100%;" webkitallowfullscreen allowfullscreen frameborder="no">
      </iframe>
  </div>
</div>  
</body>
</html>

Is there a better way to write this? What am I missing?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source