-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.php
104 lines (83 loc) · 3.12 KB
/
faq.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?php
/*
Nom du fichier : faq.php
Auteur : Florent BENEY
Date de création : 06.06.2018
Description : Cette page permet à l'utilisateur de consulter la FAQ du site
*/
//Intégrer les fonctions PHP
require 'functPHP/functions.php';
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<!-- Balises meta -->
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>FAQ - DevSkills</title>
<meta content="Site de tutoriels informatiques" name="description">
<!-- Début CSS -->
<?php include 'inc/templateCSS.inc.php'; ?>
<!-- Fin CSS -->
<!-- Logo de la page -->
<link rel="shortcut icon" href="img/logoDevSkills.png">
<!-- =======================================================
Theme Name: Folio
Theme URL: https://bootstrapmade.com/folio-bootstrap-portfolio-template/
Author: BootstrapMade.com
Author URL: https://bootstrapmade.com
======================================================= -->
</head>
<body>
<!-- Début barre de navigation -->
<?php include 'inc/navbar.inc.php'; ?>
<!-- Fin barre de navigation -->
<!-- Début section header -->
<?php include 'inc/header.inc.php'; ?>
<!-- Fin section header -->
<!-- Début section explication de la page -->
<div id="about" class="paddsection">
<div class="container">
<div class="row justify-content-between">
<div class="col-lg-12">
<div class="about-descr">
<p class="p-heading">
FAQ de DevSkills
</p>
<p class="separator">
Cette page vous permet de consulter la FAQ de DevSkills<br>
<?php
//Si l'utilisateur est connecté
if($_SESSION['logged']){ ?>
<a href="accueil.php">Retour à l'accueil</a>
<?php }else{ ?>
Retour à la <a href="index.php">connexion</a> ou à <a href="inscription.php">l'inscription</a>
<?php } ?>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Fin section explication de la page -->
<!-- Début section FAQ -->
<div id="about" class="paddsection">
<div class="container">
<div class="row justify-content-between">
<div class="col-lg-12">
<div style="width: 100%; height: 100%">
<embed src="inc/ModeEmploi.pdf" width="100%" height="100%" type='application/pdf'>
</div>
</div>
</div>
</div>
</div>
<!-- Fin section FAQ -->
<!-- Début pied de page -->
<?php include 'inc/footer.inc.php'; ?>
<!-- Fin pied de page -->
<!-- Début JS -->
<?php include 'inc/templateJS.inc.php'; ?>
<!-- Fin JS -->
</body>
</html>