134 lines
4.9 KiB
HTML
134 lines
4.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"
|
|
/>
|
|
<!-- Select2 CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0/dist/css/select2.min.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<!-- formulaire -->
|
|
<div id="form-container" class="form-container">
|
|
<div class="form-content">
|
|
<h1>Formulaire</h1>
|
|
<form id="my-form">
|
|
<label for="name">Nom :</label>
|
|
<input type="text" id="name" name="name" required>
|
|
<br><br>
|
|
<label for="resolution">Résolution :</label>
|
|
<select id="resolution" name="resolution" required>
|
|
<option value="1920x1080">1920x1080</option>
|
|
<option value="1280x720">1280x720</option>
|
|
</select>
|
|
<br><br>
|
|
<label for="duration">Durée (en minutes) :</label>
|
|
<div class="duration-input">
|
|
<button type="button" id="decrement-button">-</button>
|
|
<input type="number" id="duration" name="duration" value="0" min="0" required>
|
|
<button type="button" id="increment-button">+</button>
|
|
</div>
|
|
<label for="choice">Choose Option:</label>
|
|
<select id="choice" name="choice">
|
|
<option value="firstLast">First and Last</option>
|
|
<option value="oneByOne">One by One</option>
|
|
</select>
|
|
<br><br>
|
|
<div id="one-by-one-container" style="display: none;">
|
|
<label for="number-picker">Pick a Number:</label>
|
|
<select id="number-picker" name="number-picker"></select>
|
|
<button type="button" id="add-number-button">Add Number</button>
|
|
</div>
|
|
<br><br>
|
|
<div id="result-container"></div>
|
|
<br><br>
|
|
<button class="btn btn-primary" type="submit">Soumettre</button>
|
|
</form>
|
|
<button class="btn btn-primary" id="close-form-button">Fermer</button>
|
|
</div>
|
|
</div>
|
|
<!-- page classique -->
|
|
<div id="section" class="container mt-5">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="buttons-container" style="float: left; width: 20%">
|
|
<button class="btn btn-primary" id="projets">
|
|
<span> Home </span>
|
|
</button>
|
|
</div>
|
|
<h3
|
|
id="name_project"
|
|
class="text-black"
|
|
style="float: left; width: 50%"
|
|
></h3>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div id="addVideoHandler">
|
|
<select name="videos" id="video_selector" class="select2">
|
|
</select>
|
|
<div class="buttons-container">
|
|
<button class="btn btn-primary" id="show-form-button">
|
|
<span> + </span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div id="metric_viewer_placeholder">
|
|
<canvas id="metric_viewer"></canvas>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div id="content1" class="hiddenTable">
|
|
<table
|
|
class="table table-striped scrollable sticky-header .thead-dark"
|
|
id="table-image"
|
|
>
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<button class="btn btn-primary" id="toggle-view">
|
|
See all images
|
|
</button>
|
|
</th>
|
|
<th><button class="btn btn-primary">
|
|
sort images
|
|
</button></th>
|
|
<th><button class="btn btn-primary">
|
|
export images
|
|
</button></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="imageSource"></tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>© 2024 Timelapse. All rights reserved.</p>
|
|
</footer>
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
<!-- Select2 JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0/dist/js/select2.min.js"></script>
|
|
<script src="../js/utilities/constVariables.js"></script>
|
|
<script src="../js/utilities/populate.js"></script>
|
|
<script src="../js/utilities/routes.js"></script>
|
|
<script src="../js/utilities/tools.js"></script>
|
|
<script src="../js/projet_detail.js"></script>
|
|
</body>
|
|
</html>
|