| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script type="text/javascript"> | 3 <script type="text/javascript"> |
| 4 function initialize() { | 4 function initialize() { |
| 5 window.setTimeout(function() { | 5 window.setTimeout(function() { |
| 6 window.postMessage({ | 6 window.postMessage({ |
| 7 type: 'gaia_saml_api', | 7 type: 'gaia_saml_api', |
| 8 call: {method: 'initialize'}}, '/'); | 8 call: {method: 'initialize'}}, '/'); |
| 9 }, 0); | 9 }, 0); |
| 10 } | 10 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 </head> | 28 </head> |
| 29 <body onload="initialize();"> | 29 <body onload="initialize();"> |
| 30 <form method=post action="$Post"> | 30 <form method=post action="$Post"> |
| 31 <input type=hidden name=RelayState value="$RelayState"> | 31 <input type=hidden name=RelayState value="$RelayState"> |
| 32 User: <input type=text id=Email name=Email> | 32 User: <input type=text id=Email name=Email> |
| 33 Password: <input type=password id=Password name=Password> | 33 Password: <input type=password id=Password name=Password> |
| 34 <input id=Submit type=button value="Login" onclick="send_and_submit();"/> | 34 <input id=Submit type=button value="Login" onclick="send_and_submit();"/> |
| 35 </form> | 35 </form> |
| 36 </body> | 36 </body> |
| 37 </html> | 37 </html> |
| OLD | NEW |