mirror of
https://grond.iut-fbleau.fr/stiti/SAE_2.02
synced 2024-11-12 22:01:41 +01:00
11 lines
234 B
PHP
11 lines
234 B
PHP
|
<?php
|
||
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
||
|
|
||
|
class Home extends CI_Controller {
|
||
|
|
||
|
public function index() {
|
||
|
// Charger la vue de la page d'accueil
|
||
|
$this->load->view('accueil');
|
||
|
}
|
||
|
}
|