mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-05-15 02:33:14 +00:00
switched crypto to crypto-js from google. login.html form loads crypto-js directly from google codebase in order to hash passwords before sending them to the server
11 lines
No EOL
271 B
HTML
11 lines
No EOL
271 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> |