-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
48 lines (47 loc) · 1.89 KB
/
footer.php
File metadata and controls
48 lines (47 loc) · 1.89 KB
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
<footer class="bg-dark text-white pt-2 pb-2">
<div class="container">
<div class="row">
<!-- Section à propos -->
<div class="col-md-5">
<h5>À propos</h5>
<p>Nous fournissons un service de livraison fiable et rapide pour vos besoins quotidiens. Abonnez-vous pour des offres exclusives.</p>
</div>
<!-- Section Liens Utiles
<div class="col-md-3">
<h5>Liens Utiles</h5>
<ul class="list-unstyled">
<li><a href="indexApp.php" class="text-white">Accueil</a></li>
<li><a href="#" class="text-white">Nos Services</a></li>
<li><a href="#" class="text-white">Tarifs</a></li>
<li><a href="#" class="text-white">Contact</a></li>
</ul>
</div> -->
<!-- Section Abonnement -->
<div class="col-md-3">
<h5>S'abonner</h5>
<form action="../script_controle/traitement_abonnement.php" method="POST">
<div class="form-group">
<input type="email" class="form-control" name="email" placeholder="Adresse e-mail">
</div>
<button type="submit" class="btn btn-primary">S'abonner</button>
</form>
</div>
<!-- Section Contact -->
<div class="col-md-3">
<h5>Contact</h5>
<p>Email: contact@rapido.top.bj</p>
<p>Téléphone: +229 651 640 88</p>
<!--<div>
<a href="#" class="text-white mr-2"><img src="path/to/facebook_icon.png" alt="Facebook" width="20"></a>
<a href="#" class="text-white mr-2"><img src="path/to/twitter_icon.png" alt="Twitter" width="20"></a>
<a href="#" class="text-white"><img src="path/to/instagram_icon.png" alt="Instagram" width="20"></a>
</div>-->
</div>
</div>
<div class="row mt-2">
<div class="col text-center">
<p>© 2024 Service Livreur. Tous droits réservés.</p>
</div>
</div>
</div>
</footer>