로그오프 방법 제공하기
@model NETS.SSO.Agent.MVC.Web.ViewModels.HomeIndexViewModel
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Home-Index</title>
</head>
<body>
User ID : @Model.UserID <br />
User Attributes <br />
@Model.UserAttribute <br />
<hr />
ErrorCode : @Model.ErrorCode
<hr />
ErrorMessage : @Model.ErrorMessage
<hr />
<a href="@Model.LogoffUrl">Logoff</a>
</body>
</html>Last updated
Was this helpful?