Adding scaffolding for Logout page

- Removing Identity route from startup
This commit is contained in:
Eric Fleming
2019-06-20 20:41:00 -04:00
parent ba8bdfad84
commit d5446de65f
5 changed files with 55 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
@page
@model LogoutModel
@{
ViewData["Title"] = "Log out";
}
<header>
<h1>@ViewData["Title"]</h1>
<p>You have successfully logged out of the application.</p>
</header>