This commit is contained in:
anto
2024-10-24 17:13:14 +02:00
parent bc49332321
commit e07c99e5bb
4 changed files with 68 additions and 27 deletions

View File

@@ -15,7 +15,6 @@
<div id="section" class="container mt-5">
<div class="buttons-container mb-4">
<button id="video" class="btn btn-primary"><span>Mes vidéos</span></button>
<button id="projet" class="btn btn-primary"><span>Mon projet</span></button>
</div>
<table class="table table-striped" id="table-projects">
@@ -43,9 +42,6 @@
document.getElementById("video").addEventListener('click', () => {
window.location.href = 'html/videos.html';
});
document.getElementById("projet").addEventListener('click', () => {
window.location.href = 'html/projet_detail.html';
});
});
</script>
</body>