Files
projet_programmation_web/ProjetProgWeb/index.php
T

44 lines
1.6 KiB
PHP

<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="stylesheet.css">
<title>Theses FR</title>
</head>
<body>
<?php
include("navbar.php");
?>
<!-- La petite animation de chargement provient de :
https://freefrontend.com/css-spinners/
Réalisée par Jon Marron -->
<div class="loader">
<svg viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg">
<circle class="load one" cx="60" cy="60" r="40" />
<circle class="load two" cx="60" cy="60" r="40" />
<circle class="load three" cx="60" cy="60" r="40" />
<g>
<circle class="point one" cx="45" cy="70" r="5" />
<circle class="point two" cx="60" cy="70" r="5" />
<circle class="point three" cx="75" cy="70" r="5" />
</g>
</svg>
</div>
<div id="results-count"></div>
<div id="results"></div>
<div id="error">
<div id="error-message"></div>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" id="error-button">
<path d="M23.954 21.03l-9.184-9.095 9.092-9.174-2.832-2.807-9.09 9.179-9.176-9.088-2.81 2.81 9.186 9.105-9.095 9.184 2.81 2.81 9.112-9.192 9.18 9.1z"/>
</svg>
</div>
<script src="app.js"></script>
</body>
</html>