You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
947 B
32 lines
947 B
<?php
|
|
//préfixe
|
|
$rep = __DIR__ . '/../';
|
|
|
|
//BD
|
|
$dsn = 'mysql:host=londres.uca.local; dbname=dbnogarnier1';
|
|
$user = 'nogarnier1';
|
|
$password = 'achanger';
|
|
|
|
// $dsn = 'mysql:host=localhost; dbname=scripted';
|
|
// $user = 'root';
|
|
// $password = 'p';
|
|
|
|
//Sel de hashage
|
|
$sel = "JeSuisUnSeldeHashageEtJeSuisUniqueEtTresSecuriseEtJeSuisTresLong";
|
|
|
|
//View
|
|
//Page
|
|
$vues['main'] = 'View/src/pages/Main.php';
|
|
$vues['presenation'] = 'View/src/pages/Presentation.html';
|
|
$vues['login'] = 'View/src/pages/LogSign/Login.php';
|
|
$vues['signUp'] = 'View/src/pages/LogSign/SignUp.php';
|
|
$vues['enigme'] = 'View/src/pages/Enigme/palindrome.html';
|
|
|
|
//Error
|
|
$vues['erreurSignUp'] = 'View/Error/ErreurSignUp.php';
|
|
$vues['erreur'] = 'View/Error/Erreur.php';
|
|
$vues['erreurBd'] = 'View/Error/ErreurBd.php';
|
|
$vues['erreurLoginEmail'] = 'View/Error/ErreurLoginEmail.php';
|
|
$vues['erreurLoginMdp'] = 'View/Error/ErreurLoginMdp.php';
|
|
$vues['erreur404'] = 'View/Error/Erreur404.php';
|