Files
projetCGroupe8/FrontEnd/index.html
2023-06-08 16:02:33 +02:00

44 lines
2.3 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title> Groupe 8 Projet C </title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<link rel="icon" href="V5.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
</head>
<body>
<h1>Filmothèque</h1>
<div id="research">
<form action="result.html" id="researchForm">
<div class="formResearchAndCheck">
<input type="text" id="director" class="searchField" name="director" placeholder="Rechercher par le nom d'un réalisateur">
<input type="checkbox" id="directorCheck" name="directorCheck" checked>
</div>
<div class="formResearchAndCheck">
<input type="text" id="duree" class="searchField" name="duree" placeholder="Rechercher par la durée" disabled>
<input type="checkbox" id="dureeCheck" name="dureeCheck">
</div>
<div class="formResearchAndCheck">
<input type="text" id="categorie" class="searchField" name="categorie" placeholder="Rechercher par la catégorie" disabled>
<input type="checkbox" id="categorieCheck" name="categorieCheck">
</div>
<div class="formResearchAndCheck">
<input type="text" id="film" class="searchField" name="film" placeholder="Rechercher par le nom d'un film" disabled>
<input type="checkbox" id="filmCheck" name="filmCheck">
</div>
<button type="submit" id="researchButton" class="searchButton">Rechercher</button>
</form>
<button id="realMostMovie" onclick="realMostMovie()" class="searchButton">Quel réal a fait le plus de film ?</button><br>
<button id="researchAll" onclick="researchAll()" class="searchButton">Tout rechercher</button><br>
<button id="stop" onclick="stopServer()">Couper le serveur</button>
</div>
<div id="bottom">
<p>Created by Louis MARVILLET, Herman MARZELIERE, Félix MARQUET<br>
<br>The source code is available <a href="https://github.com/BreizhHardware/projetCGroupe8">here</a></p>
</div>
</body>
</html>