From d96f8b4650ad6d2a45a5374bcb4bc07cb5bee422 Mon Sep 17 00:00:00 2001 From: vbochet <vbochet@gmail.com> Date: Thu, 28 Apr 2016 11:06:43 +0200 Subject: [PATCH] =?UTF-8?q?Modification=20de=20la=20vue=20de=20la=20page?= =?UTF-8?q?=20de=20succ=C3=A8s=20de=20connexion=20pour=20prendre=20en=20co?= =?UTF-8?q?mpte=20le=20design?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/view/Connexion/displayValid.html | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/app/view/Connexion/displayValid.html b/app/view/Connexion/displayValid.html index 97aac5c..8a6ddf3 100644 --- a/app/view/Connexion/displayValid.html +++ b/app/view/Connexion/displayValid.html @@ -1,16 +1,11 @@ -<?php session_start(); ?> -<!DOCTYPE html> -<html> -<head> - <meta charset="utf-8"/> - <title>Connexion réussie</title> -</head> -<body> - <header> - <h1 style="color:green;">Vos identifiants sont corrects !</h1> - </header> - <footer> - <p>Le pied de page</p> - </footer> -</body> -</html> + +<?php $page_title = "Connexion réussie"; + $RACINE = "../.."; ?> +<?php include(ROOT."/app/view/Includes/header.include.html"); ?> + + <article class="msg-valide"><h2>Vous êtes connecté !</h2></article> + <article> + <p>Vous pouvez à présent profiter de toutes les fonctionnalités du site. :)</p> + </article> + +<?php include(ROOT."/app/view/Includes/footer.include.html"); ?> -- GitLab