mirror of
https://github.com/Floriansylvain/projet_programmation_web.git
synced 2026-08-19 11:43:16 +02:00
57 lines
2.0 KiB
PHP
57 lines
2.0 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 class="page-nav">
|
|
<p onclick="browseResults(currentPage - 1)"><-</p>
|
|
<div></div>
|
|
<p onclick="browseResults(currentPage + 1)">-></p>
|
|
</div>
|
|
|
|
<div id="results">
|
|
<h1 style="color:#CFCFCF;text-align: center">Bienvenue sur theses.fr</h1>
|
|
</div>
|
|
|
|
<!-- TODO Bouton pour remonter en haut de la page -->
|
|
|
|
<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>
|
|
|
|
<!-- TODO Footer avec lien vers depot github -->
|
|
|
|
<script src="app.js"></script>
|
|
|
|
</body>
|
|
</html>
|