Files
timelapse-frontend/index.html

68 lines
2.6 KiB
HTML

<!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="../css/style_menu.css">
</head>
<body id="body">
<button class="default-button" id="download"><span>Download App</span></button>
<button class="default-button" id="show-form-button"><span>+</span></button>
<div id="customAlert" class="modal">
<div class="modal-content">
<p id="alertMessage">This is a custom alert!</p>
<div class="modal-buttons">
<button class="default-delete-button" id="cancelBtn">Annuler</button>
<button class="default-access-button" id="okBtn">OK</button>
</div>
</div>
</div>
<div id="form-container" class="form-container" style="display: none">
<div class="form-content" id="place-of-form">
<div class="form-header">
<button id="close-form-button" class="default-delete-button">&#x2715;</button>
</div>
<h1>Formulaire</h1>
<div id="my-form">
<label for="name">Nom :</label>
<input type="text" id="name" name="name" required />
<br /><br />
<label for="description">Description :</label>
<input type="text" id="description" name="description" required />
<br /><br />
<button class="default-button" id="submit">Soumettre</button>
</div>
</div>
</div>
<div>
<div id="title-global">
<h1 id="h1-title" class="global_title">Caméra Timelapse</h1>
<div id="ball"></div>
<p id="xyz" style="display: none;">Caméra Timelapse</p>
</div>
<div id="carousel-container" class="container">
<div id="carousel" class="carousel">
<!-- Projects will be dynamically inserted here -->
</div>
</div>
<button id="prev-button" class="prev"></button>
<button id="next-button" class="next"></button>
</div>
<div id="carousel-dots"></div>
<footer class="text-center mt-5 py-3" onclick="change_title_style()">
<p>&copy; 2025 Timelapse. All rights reserved.</p>
</footer>
<script src="./js/utilities/jquery.js"></script>
<script src="../js/utilities/constVariables.js"></script>
<script src="../js/utilities/routes.js"></script>
<script src="../js/index.js"></script>
</body>
</html>