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

24 lines
573 B
Plaintext

@model SsoLogOnModel
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>天风证券用户登录</title>
</head>
<body>
<p style="color:red;margin-bottom:10px;">@(Model.Error)</p>
<p>3秒后<a href="@(Model.SsoUrl)">跳转到登录页面</a>...</p>
<script>
document.addEventListener('DOMContentLoaded', function () {
setTimeout(function () {
window.location.href = "@(Model.SsoUrl)";
}, 3000);
});
</script>
</body>
</html>