SSO template now HTML5 validate

trivial fix

Change-Id: I43ef43d6b80766ddec85b977738266ad9daf0ee1
Signed-off-by: Ivan Anfimov <lazekteam@gmail.com>
This commit is contained in:
Ivan Anfimov
2025-05-30 19:39:15 +00:00
parent bd178ee91f
commit 8a336fae5e

View File

@@ -1,19 +1,20 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<html lang="en">
<head>
<meta charset="utf-8">
<title>Keystone WebSSO redirect</title>
</head>
<body>
<form id="sso" name="sso" action="$host" method="post">
Please wait...
<br/>
<input type="hidden" name="token" id="token" value="$token"/>
<br>
<input type="hidden" name="token" id="token" value="$token">
<noscript>
<input type="submit" name="submit_no_javascript" id="submit_no_javascript"
value="If your JavaScript is disabled, please click to continue"/>
value="If your JavaScript is disabled, please click to continue">
</noscript>
</form>
<script type="text/javascript">
<script>
window.onload = function() {
document.forms['sso'].submit();
}