mirror of
https://github.com/JMP-MS/ASPIC.git
synced 2026-08-28 23:33:13 +00:00
18 lines
739 B
PHP
18 lines
739 B
PHP
<?php
|
|
/**
|
|
* ASPIC — point d'entrée du domaine (index.php)
|
|
* ---------------------------------------------------------------------------
|
|
* Ne contient aucune logique : redirige simplement vers l'écran
|
|
* d'identification, qui garde son nom explicite (identification.html) plutôt
|
|
* que d'être lui-même renommé en index.html (voir journal ASPIC, section 3,
|
|
* convention de nommage des fichiers). Permet de charger
|
|
* https://aspic.mvl-tls.fr/ directement sur l'écran de connexion.
|
|
*
|
|
* À faire évoluer le jour où l'application aura une vraie notion de session :
|
|
* rediriger vers liste_contacts.html si une session valide existe déjà,
|
|
* vers identification.html sinon.
|
|
*/
|
|
|
|
header('Location: identification.html');
|
|
exit;
|