1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-26 17:37:36 +01:00

small logout button

This commit is contained in:
Kyle Spearrin 2018-04-16 21:37:33 -04:00
parent dead022e83
commit b1b016fbc8

View File

@ -54,12 +54,12 @@
@if(SignInManager.IsSignedIn(User))
{
<form asp-controller="Login" asp-action="Logout" method="post">
<button type="submit" class="btn btn-secondary">Log Out</button>
<button type="submit" class="btn btn-sm btn-secondary">Log Out</button>
</form>
}
else
{
<a class="btn btn-secondary" asp-controller="Login" asp-action="Index">Log In</a>
<a class="btn btn-sm btn-secondary" asp-controller="Login" asp-action="Index">Log In</a>
}
</div>
</div>