Browse Source

Merge pull request #1001 from LeeDumond/fix/fix-logout-form-action

change form action from non-existent Logoff to Logout
pull/1008/head
Miguel Veloso 5 years ago
committed by GitHub
parent
commit
cd662d9105
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Services/Identity/Identity.API/Views/Shared/_LoginPartial.cshtml

+ 1
- 1
src/Services/Identity/Identity.API/Views/Shared/_LoginPartial.cshtml View File

@ -7,7 +7,7 @@
@if (SignInManager.IsSignedIn(User))
{
<form asp-area="" asp-controller="Account" asp-action="LogOff" method="post" id="logoutForm" class="navbar-right">
<form asp-area="" asp-controller="Account" asp-action="Logout" method="post" id="logoutForm" class="navbar-right">
<ul class="nav navbar-nav navbar-right">
<li>
<a asp-area="" asp-controller="Manage" asp-action="Index" title="Manage">Hello @UserManager.GetUserName(User)!</a>


Loading…
Cancel
Save