1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-28 23:04:50 -05: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)) @if(SignInManager.IsSignedIn(User))
{ {
<form asp-controller="Login" asp-action="Logout" method="post"> <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> </form>
} }
else 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>
</div> </div>