mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-15 21:21:00 +00:00
Use logout button instead of logout link
This commit is contained in:
parent
fc36707be8
commit
5512de52ca
1 changed files with 3 additions and 4 deletions
|
@ -32,10 +32,9 @@ pub async fn admin_dashboard(
|
|||
<ol>
|
||||
<li><a href="/admin/password">Change password</a></li>
|
||||
<li>
|
||||
<a href="javascript:document.logoutForm.submit()">Logout</a>
|
||||
<form name="logoutForm" action="/admin/logout" method="post" hidden>
|
||||
<input hidden type="submit" value="Logout">
|
||||
</form>
|
||||
<form name="logoutForm" action="/admin/logout" method="post">
|
||||
<input type="submit" value="Logout">
|
||||
</form>
|
||||
</li>
|
||||
</ol>
|
||||
</body>
|
||||
|
|
Loading…
Reference in a new issue