diff --git a/Style/listStyle.css b/Style/listStyle.css index 2de5a11..3167608 100644 --- a/Style/listStyle.css +++ b/Style/listStyle.css @@ -33,11 +33,24 @@ body { box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1); } .col-1 { - flex-basis: 85%; + flex-basis: 15%; } .col-2 { + flex-basis: 50%; + } + + .col-3 { + flex-basis: 10%; + } + .col-4 { flex-basis: 15%; } + .col-5 { + flex-basis: 10%; + } + .col-6 { + flex-basis: 100%; + } @media all and (max-width: 767px) { .table-header { diff --git a/Vues/accueil.php b/Vues/accueil.php index 2154f71..fac1dc0 100644 --- a/Vues/accueil.php +++ b/Vues/accueil.php @@ -77,6 +77,12 @@
See Details
+
  • +
    + +
    +
  • + diff --git a/Vues/accueilPrivate.php b/Vues/accueilPrivate.php index bc928af..1de91cd 100644 --- a/Vues/accueilPrivate.php +++ b/Vues/accueilPrivate.php @@ -54,6 +54,12 @@
    See Details
    +
  • +
    + +
    +
  • + diff --git a/config/config.php b/config/config.php index 6dabb93..af90257 100644 --- a/config/config.php +++ b/config/config.php @@ -2,9 +2,9 @@ $rep = __DIR__ . '/../'; -$login="thchazot1"; -$password="achanger"; -$dsn="mysql:host=localhost;dbname=dbthchazot1"; // chemin vers bd (mysql:host=londres.uca.local;dbname=dblibreton => pour l'iut) +$login="root"; +$password="root"; +$dsn="mysql:host=localhost;port=8888;dbname=bddDeQualite"; // chemin vers bd (mysql:host=londres.uca.local;dbname=dblibreton => pour l'iut) //$dsn="mysql:host=localhost;port=8888;dbname=bddDeQualite"; /* $login="thchazot1"; diff --git a/controllers/FrontController.php b/controllers/FrontController.php index db7101a..7ec43b9 100644 --- a/controllers/FrontController.php +++ b/controllers/FrontController.php @@ -5,7 +5,7 @@ class FrontController { public function __construct(){ $liste_actions_utilisateur = array('viewPrivateList','ajouterListePrivee', 'deconnection'); - $liste_actions_visiteur = array('accessListInfos', 'goHome','accessSignUp','accessSignIn','signIn','signUp', 'delList', 'modifierListe', 'ajouterTache', 'supprimerTache', 'modifierTache'); + $liste_actions_visiteur = array('accessListInfos', 'goHome','accessSignUp','accessSignIn','signIn','signUp', 'addList', 'delList', 'goToAddList', 'goToAddListPrivate', 'ajouterTache', 'supprimerTache', 'modifierTache'); global $rep,$vues,$bd,$dataView,$styles,$assets; session_start();