mes trucs

This commit is contained in:
anto
2024-10-24 15:54:30 +02:00
parent 37faba25ba
commit eabcb00537
9 changed files with 168 additions and 132 deletions

53
index.html Normal file
View File

@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Timelapse</title>
<link rel="stylesheet" href="../css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body>
<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">
<thead class="bg-blue-600 text-white">
<tr>
<th>Name</th>
<th>Images</th>
<th>Actions</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<footer class="text-center mt-5 py-3">
<p>&copy; 2024 Timelapse. All rights reserved.</p>
</footer>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="../js/globals.js"></script>
<script src="../js/index.js"></script>
<script>
// Redirect to videos.php when the "Mes vidéos" button is clicked
document.addEventListener('DOMContentLoaded', () => {
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>
</html>