Files
sso-mvk/views/partials/footer.ejs
2026-06-10 18:44:06 +03:00

12 lines
315 B
Plaintext

</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script>
function logout() {
localStorage.removeItem('access_token');
localStorage.removeItem('refresh_token');
window.location.href = '/login';
}
</script>
</body>
</html>