Skip to content

Commit

Permalink
delete About and Contact links from the sample
Browse files Browse the repository at this point in the history
  • Loading branch information
tugberkugurlu committed Aug 29, 2016
1 parent 3afaa34 commit 7406e95
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
16 changes: 0 additions & 16 deletions samples/IdentitySample.Mvc/Controllers/HomeController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,5 @@ public IActionResult Index()
{
return View();
}

[HttpGet]
public IActionResult About()
{
ViewBag.Message = "Your app description page.";

return View();
}

[HttpGet]
public IActionResult Contact()
{
ViewBag.Message = "Your contact page.";

return View();
}
}
}
2 changes: 0 additions & 2 deletions samples/IdentitySample.Mvc/Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a asp-controller="Home" asp-action="Index">Home</a></li>
<li><a asp-controller="Home" asp-action="About">About</a></li>
<li><a asp-controller="Home" asp-action="Contact">Contact</a></li>
</ul>
@await Html.PartialAsync("_LoginPartial")
</div>
Expand Down

0 comments on commit 7406e95

Please sign in to comment.