Files
zszq-trs/YLErpWeb/Views/Account/TianFengLogout.cshtml
T
2024-05-09 14:06:26 +08:00

19 lines
427 B
Plaintext

@{
Layout = null;
var serviceUrl = Url.Action("TianFengSSO", "account", null,Context.Request.Scheme);
var ssoLogoutUrl = TianFengSSOHandler.GetSsoLogoutUrl(serviceUrl);
}
<!DOCTYPE html>
<html style="height:100%">
<head>
<meta charset="utf-8" />
<title>场外衍生品交易管理系统</title>
</head>
<body>
<script>
window.location.href = "@(ssoLogoutUrl)";
</script>
</body>
</html>