garancia-pharmaciens/httpdocs/contact.php
2017-05-30 17:55:38 +02:00

120 lines
3.3 KiB
PHP
Executable File
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/*-----------------------------------------------------*/
include_once("_inc/config.php");
/*-----------------------------------------------------*/
$_RUBRIQUE = "contact";
/*-----------------------------------------------------*/
include_once("_inc/assets/metas.php");
include_once("_inc/assets/top.php");
/*-----------------------------------------------------*/
?>
<div class="page">
<div id="arianne">
<a href="home.php">Accueil</a> |
<span class="current">Nous contacter</span>
</div>
<div class="page_contents">
<h1><span>[</span> Nous contacter <span>]</span></h1>
<div class="bContact siege">
<div class="title">Vos contacts laboratoire</div>
<div class="stitle">Contactez-nous pour toutes QUESTIONS :</div>
<?php
echo getContent(7) -> content;
?>
<!--
<div class="line">
<label>Standard : </label>
Tél: 01.45.20.73.65<br />
Fax: 01.45.20.73.20
</div>
<div class="line">
<label>VENTE SUR INTERNET : </label>
Tél: 01.80.05.37.21
</div>
<div class="line">
<label>Vitrine / Merchandising / Conseil des Mages : </label>
trade@garancia-beauty.com<br />
Tél: 01.45.20.42.24<br />
Fax : 01.45.20.73.20
</div>
<div class="line">
<label>lécole des sorciers : </label>
e-learning@garancia-beauty.com<br />
Tél: 01.45.20.32.52
</div>
<div class="line">
<label>LE CERCLE DES AMBASSADEURS :</label>
Tél: 01.45.20.32.52
</div>
<div class="line">
<label>MODIFIER LES INFORMATIONS DE VOTRE COMPTE :</label>
Tél : 01.45.20.32.52
</div>
-->
</div>
<div class="bContact delegue">
<div class="title">votre délégué GARANCIA</div>
<div class="stitle">Contactez votre délégué</div>
<?php
$pharmacie = getPharmacieByCode($_SESSION["gar_front_code_client"]);
if($pharmacie){
$delegue = getDelegueBySecteur($pharmacie -> secteur);
if($delegue){
?>
<div class="line" style="font-size:15px">
<label style="font-size:16px"><?php echo $delegue -> name; ?></label>
<?php echo $delegue -> email; ?><br />
<?php echo $delegue -> coordonnees; ?>
</div>
<?php
}
}
?>
</div>
<div class="clear"></div>
<div class="faqTxt ctn">
La réponse à votre question se trouve peut-être <a href="faq.php">ici</a> !
</div>
</div>
</div>
<script type="text/javascript">
</script>
<?php
/*-----------------------------------------------------*/
include_once("_inc/assets/footer.php");
/*-----------------------------------------------------*/
?>