@model LoggedOutViewModel
@{ 
    // set this so the layout rendering sees an anonymous user
    ViewData["signed-out"] = true;
}
    
        Logout
        You are now logged out
    
    @if (Model.PostLogoutRedirectUri != null)
    {
        
            Click 
here to return to the
            
@Model.ClientName application.
        
    }
    @if (Model.SignOutIframeUrl != null)
    {
        
    }
 
@section scripts
{
    @if (Model.AutomaticRedirectAfterSignOut)
    {
        
    }
}