change(fastapi): remove the GET /logout route; replaced with POST

Had to add some additional CSS in to style a form button the same
as <a> links are styled.

Closes #188

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-11-29 16:51:16 -08:00
parent 44f2366675
commit 69eb17cb0d
No known key found for this signature in database
GPG key ID: F7E46DED420788F3
4 changed files with 25 additions and 17 deletions

View file

@ -229,3 +229,18 @@ input#search-action-submit {
.success {
color: green;
}
/* Styling used to clone <a> styles for a form.link button. */
form.link, form.link > button {
display: inline-block;
}
form.link > button {
padding: 0 0.5em;
color: #07b;
background: none;
border: none;
}
form.link > button:hover {
cursor: pointer;
text-decoration: underline;
}