@page @model LogoutModel @{ ViewData["Title"] = "Log out"; }

@ViewData["Title"]

@{ if (User.Identity.IsAuthenticated) {
} else {

You have successfully logged out of the application.

} }