archinsa/index.php

59 lines
1.6 KiB
PHP
Raw Normal View History

2023-10-22 19:24:59 +02:00
<!DOCTYPE html>
<html lang="en">
<?php
2024-02-08 19:50:48 +01:00
$titre_page = "Arch'INSA";
include "_partials/_head.php";
?>
2023-10-22 19:24:59 +02:00
<body>
<?php
2024-01-05 18:28:38 +01:00
2023-10-22 19:24:59 +02:00
session_start();
?>
2024-04-06 11:37:53 +02:00
2024-04-06 18:21:03 +02:00
<div class="centre-horizontal bulle-rouge" id="titre">
2024-04-06 11:37:53 +02:00
<pre class="centre-txt gros-titre">
__ ____ ___ _ _ /'/ ____ _ _ ___ __
/__\ ( _ \ / __)( )_( ) (_ _)( \( )/ __) /__\
/(__)\ ) /( (__ ) _ ( _)(_ ) ( \__ \ /(__)\
(__)(__)(_)\_) \___)(_) (_) (____)(_)\_)(___/(__)(__)
</pre>
</div>
2024-04-07 11:05:51 +02:00
<h4>Comme vous pouvez le constater, on cherche quelqu'un pour le design (html + css) du site :D club.info@amicale-insat.fr</h4>
2024-04-06 11:37:53 +02:00
<button class="button color-red-tr" id="btn-connection">connection</button>
<button class="button color-red-tr" id="btn-deconnection">déconnection</button>
2023-10-22 19:24:59 +02:00
<div id="user_status">
</div>
2023-11-10 20:03:46 +01:00
2024-04-06 11:37:53 +02:00
<div class="barre-recherche centre-horizontal">
<form id="recherche_form">
<input class="champ" type="text" id="recherche_input" placeholder="Rechercher une fiche, annale ...">
<input hidden class="champ" type="text" id="themes_input" placeholder="themes (appuyez sur la touche entrée entre chaque thèmes)">
<input hidden class="champ" type="number" id="duree_input" placeholder="durée en minutes">
</form>
</div>
2024-04-06 11:37:53 +02:00
<a href="televerser.php" class="color-red-tr floating-action-btn">
<pre> _
_| |_
|_ _| Téléverser des documents
|_|
</pre></a>
<div id="liste_resultats" class="centre-txt">
</div>
2023-10-22 19:24:59 +02:00
</body>
<?php
2024-02-08 19:50:48 +01:00
include "_partials/_footer.php";
?>
</html>