mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-05-22 14:01:58 +00:00
11 lines
270 B
HTML
11 lines
270 B
HTML
<div id="menubar">
|
|
<div id="menubar_menu">menu</div>
|
|
<div id="menubar_logout">logout</div>
|
|
<script>
|
|
$('#menubar_logout').click(function() {
|
|
$.post('/logout').done(function() {
|
|
window.location.href = document.URL;
|
|
});
|
|
});
|
|
</script>
|
|
</div>
|