Commit de Moncef : Ajout de foncitonnalités

This commit is contained in:
stiti
2024-05-22 23:26:06 +02:00
parent 6948cc21ab
commit 487c7c8283
13 changed files with 288 additions and 26 deletions

View File

@@ -0,0 +1,17 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class MentionsLegales extends CI_Controller {
public function __construct(){
parent::__construct();
$this->load->helper('url');
}
public function index()
{
$this->load->view('layout/header_not_logged_dark');
$this->load->view('mentions-legals');
$this->load->view('layout/footer_dark');
}
}