This repository was archived by the owner on Dec 20, 2018. It is now read-only.

Description
The Privacy link doesn't work and the links to Page1 and Page2 are incorrect. The links to Page1, Page2, and the Privacy page should be based on pages, not actions and controllers:
_Layout.cshtml
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Index">Page1</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Index">Page2</a>
</li>
...
<footer class="border-top footer pl-3 text-muted">
© Year - WebApplication20 - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
</footer>