-
Notifications
You must be signed in to change notification settings - Fork 2
/
html_header.php
86 lines (77 loc) · 3.35 KB
/
html_header.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
<?php
/*
* This file is part of Ezac.
*
* Ezac is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Ezac is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Ezac. If not, see <http://www.gnu.org/licenses/>.
*/
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Réservation Hébergement <?php echo $tab_evenement['nom']; ?></title>
<link href="config/style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/propositions.js"></script>
<script type="text/javascript" src="js/proposer.js"></script>
<style type="text/css">
.element_menu.selectionne, .proposition, #zone_formulaire_proposition{
border-color: #<?php echo $tab_evenement['code_couleur'];?>;
}
#separateur_zones, .proposition .adresse, .bouton_afficher_form_demande{
background-color: #<?php echo $tab_evenement['code_couleur'];?>;
}
.proposition h3 .nom_hote, h2, .element_menu.selectionne, .proposition .telephone, .proposition .email{
color: #<?php echo $tab_evenement['code_couleur'];?>;
}
.bouton_valider_form_demande:hover, .bouton_valider_form_proposition:hover{
border: 1px solid #<?php echo $tab_evenement['code_couleur'];?>;
box-shadow: 0px 0px 2px #<?php echo $tab_evenement['code_couleur'];?>;
}
#zone_banniere{
border: 1px solid #<?php echo $tab_evenement['code_couleur'];?>;
box-shadow: 0px 0px 4px #<?php echo $tab_evenement['code_couleur'];?>;
}
</style>
</head>
<body>
<div id="entete">
<a href="http://lacampanule.free.fr/">
<img id="logo_campanule" alt="La Campanule" src="img/logo_campanule.png" />
</a>
<p id="texte_entete">
Trouvez un hébergement pour les grands événements Folk avec l’aide de La Campanule !
</p>
</div>
<div id="entete_evenement">
<p id="texte_entete_evenement">
Trouvez votre hébergement<br />
chez l’habitant pour
</p>
<div id="zone_banniere">
<a href="http://<?php echo $tab_evenement['site_officiel']; ?>">
<img src="img/bannieres/<?php echo $tab_evenement['banniere']; ?>" alt="<?php echo $tab_evenement['nom']; ?>" />
</a>
</div>
</div>
<div id="corps">
<div id="menu">
<a class="element_menu<?php if($element_menu_selectionne == 1){echo ' selectionne';} ?>" href="reservation.php">Liste des hébergements</a>
<a class="element_menu<?php if($element_menu_selectionne == 2){echo ' selectionne';} ?>" href="proposer_un_hebergement.php">Proposer un hébergement</a>
<?php /* PAGE A FAIRE
<a class="element_menu<?php if($element_menu_selectionne == 3){echo ' selectionne';} ?>" href="comment_ca_marche.php">Comment ça marche ?</a>
*/ ?>
</div>
<div id="zone_contenu">
<div id="separateur_zones">
</div>