Files
timelapse-frontend/html/projet_detail.html
2024-10-24 17:13:14 +02:00

71 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Détails</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>
<div class="buttons-container" style="float: left; width: 20%">
<button id="projets" class="btn btn-primary">
<span> Home </span>
</button>
</div>
<h3
id="name_project"
class="text-black"
style="float: left; width: 50%"
></h3>
</div>
<table
class="table table-striped"
id="table-metrics"
style="float: left; width: 50%"
>
<thead class="bg-blue-600 text-black">
<tr>
<th>date</th>
<th>Hygrométrie</th>
<th>température</th>
</tr>
</thead>
<tbody></tbody>
</table>
<!-- <table
class="table table-striped"
id="table-image"
style="float: left; width: 50%"
>
<thead class="bg-blue-600 text-black">
<tr>
<th>images</th>
</tr>
</thead>
<tbody></tbody>
</table> -->
</div>
<img id="my-image" alt="Description of the image">
<footer>
<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/projet_detail.js"></script>
</body>
</html>