<script>
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function (event) {
const response = confirm("Gerçekten çıkmak istiyor musunuz?");
if(response) {
history.back();
} else {
history.pushState(null, null, document.URL);
}
});
</script>Bunu deneyin çalışır