archinsa/index.php

95 lines
3 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
<?php
if(isset($_SESSION["utilisateur_authentifie"]) && ($_SESSION["utilisateur_authentifie"] == 1)){
?>
<a href="deconnection.php" class="button color-red-tr" id="btn-deconnection">Se déconnecter</a>
<?php
}else{
?>
<a href="inscription.php" class="button color-red-tr" id="btn-connection">S'inscrire</a>
<a href="connection.php" class="button color-red-tr" id="btn-connection">Se connecter</a>
<?php
}
if(isset($_SESSION["admin"]) && ($_SESSION["admin"] == 1)){
?>
<a href="validation.php" class="button color-red-tr" id="btn-validation">Validation des ensembles</a>
<a href="utilisateurs.php" class="button color-red-tr" id="btn-validation">Gestion des utilisateurs</a>
<?php
}?>
2024-04-07 11:25:20 +02:00
<br>
<br>
2023-10-22 19:24:59 +02:00
<div id="user_status">
<?php
if(isset($_SESSION["utilisateur_authentifie"]) && ($_SESSION["utilisateur_authentifie"] == 1)){
?><h2>Salut <?= $_SESSION["username"] ?> !</h2><?php
}else{
?><h2>Vous n'êtes pas connecté !</h2><?php
}
?>
2023-10-22 19:24:59 +02:00
</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 ...">
2024-09-09 17:32:37 +02:00
<div hidden>
<label class="champ" for="tout-les-insa-switch">Activer la recherche sur tout les INSA</label>
<input class="champ checkbox" type="checkbox" id="tout_les_insa_switch">
</div>
2024-08-20 12:09:42 +02:00
<input hidden type="submit">
2024-04-06 11:37:53 +02:00
<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>
<a href="televerser.php">
<div class="ascii-art color-red-tr floating-action-btn">
2024-04-09 16:22:47 +02:00
============================================
| _ |
| _| |_ |
| |_ _| Téléverser des documents |
| |_| |
============================================
2024-08-20 12:09:42 +02:00
</div></a>
2024-04-09 16:22:47 +02:00
<div class="centre-horizontal etaler">
<div id="liste_resultats" class="centre-txt">
</div>
<div>
2023-10-22 19:24:59 +02:00
</body>
<?php
2024-02-08 19:50:48 +01:00
include "_partials/_footer.php";
?>
</html>