-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
154 lines (127 loc) · 4.56 KB
/
home.php
File metadata and controls
154 lines (127 loc) · 4.56 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Hritik">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewport" content="width-device-width, initial-scale=1, shrink-to-fit=no">
<title>Home Page-SecureWeb</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="boot2.css">
</head>
<body>
<div class="jumbotron">
<h1 class="display-3 text-white text-center font-weight-bold">
Web Application Security Services</h1>
<!--<h3 class="lead font-weight-bold">Think Offensively to Secure Defenses</h3> -->
<hr class="my-2">
<br><br>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="" target="_blank">Info</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.php">Logout</a>
</li>
<li class="nav-item">
<a class="nav-link" href="report2.php">Report</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<?php
require 'config.php';
$sql="SELECT * FROM product";
$result=mysqli_query($conn,$sql);
?>
<div class="container">
<div class="row">
<?php
while($row=mysqli_fetch_array($result)){
?>
<div class="col-lg-4 mt-3 mb-3">
<div class="card-deck">
<div class="card border">
<img src="<?= $row['product_image']; ?>" class="card-iamge-top" height="320">
<h5 class="card-title">Package : <?= $row['product_name']; ?></h5>
<a href="order.php?id=<?= $row['product_id']; ?>" class="btn btn-danger btn-block btn-lg">Buy Now</a>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
<!-- Page Footer -------------------------------------------------------->
<footer class="page-footer font-small blue pt-4">
<!-- Footer Links -->
<div class="container-fluid text-center text-md-left">
<!-- Grid row -->
<div class="row">
<!-- Grid column -->
<div class="col-md-6 mt-md-0 mt-3">
<!-- Content -->
<h5 class="text-uppercase">OUR TEAM</h5>
<ul>
<li>Hritik Dubey </li>
<li>Suyash Gupta </li>
</ul>
</div>
<!-- Grid column -->
<hr class="clearfix w-100 d-md-none pb-3">
<!-- Grid column -->
<div class="col-md-3 mb-md-0 mb-3" >
<!-- Links -->
<h5 class="text-uppercase">OUR SERVICES</h5>
<ul class="list-unstyled">
<li>
Illuminate Vulnerabilities
</li>
<li>
Gain Assurance
</li>
<li>
Boost Defense
</li>
<li>
Penetration Testing
</li>
</ul>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-3 mb-md-0 mb-3">
<!-- Links -->
<h5 class="text-uppercase">CONTACT US</h5>
<ul class="list-unstyled">
<li>
8573875453
</li>
</ul>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
<!-- Footer Links -->
<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2021 Copyright:
There is no Copyright
</div>
<!-- Copyright -->
</footer>
</body>
</html>