-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfooter.php
45 lines (43 loc) · 1.98 KB
/
footer.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
<?php if(!isset($_SESSION['login_user'])){
exit();
} ?>
<footer class="text-light" >
<div class="container" style="top:2000px">
<div class="row">
<div class="col-md-3 col-lg-4 col-xl-3">
<h5>About</h5>
<hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
<p class="mb-0">
The purpose of this lab is to show the vulnerabilities like XSS, CSRF, FILE UPLOAD
in this website.
</p>
</div>
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto">
<h5>Informations</h5>
<hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
<ul class="list-unstyled">
<li><a href="">Link 1</a></li>
<li><a href="">Link 2</a></li>
<li><a href="">Link 3</a></li>
<li><a href="">Link 4</a></li>
</ul>
</div>
<div class="col-md-4 col-lg-3 col-xl-3">
<h5>Contact</h5>
<hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
<ul class="list-unstyled">
<li><i class="fa fa-home mr-2"></i> Trouble1 LTD</li>
<li><i class="fa fa-envelope mr-2"></i> [email protected]</li>
<li><i class="fa fa-phone mr-2"></i> +91 8828381658</li>
<li><i class="fa fa-print mr-2"></i> +91 7012500259</li>
</ul>
</div>
<div class="col-12 copyright mt-3">
<p class="float-left">
<a href="#">Back to top</a>
</p>
<p class="text-right text-muted">created with <i class="fa fa-heart"></i> by <a href="https://t-php.fr/43-theme-ecommerce-bootstrap-4.html"><i>t-php</i></a> | <span>v. 1.0</span></p>
</div>
</div>
</div>
</footer>