-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmarket.php
127 lines (114 loc) · 4.29 KB
/
market.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
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
<?php
session_start();
if(!isset($_SESSION['logged_in']) OR $_SESSION['logged_in'] == 0)
{
$_SESSION['message'] = "You need to first login to access this page !!!";
header("Location: Login/error.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AgroCulture</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<link href="bootstrap\css\bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="bootstrap\js\bootstrap.min.js"></script>
<!--[if lte IE 8]><script src="css/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="login.css"/>
<link rel="stylesheet" type="text/css" href="indexFooter.css">
<script src="js/jquery.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-xlarge.css" />
</noscript>
<!--[if lte IE 8]><link rel="stylesheet" href="css/ie/v8.css" /><![endif]-->
</head>
<?php require 'menu.php'; ?>
<body>
<!-- One -->
<section id="one" class="wrapper style1 align-center" style="height: 600px">
<div class="container">
<h2>Welcome to Digital Market</h2>
<br /><br />
<div class="row 200%">
<section class="4u 12u$(small)">
<a href="profileView.php"><img src="profileDefault.png"></a>
<p>Your Profile</p>
</section>
<section class="4u 12u$(small)">
<a href="productMenu.php?n=1" name="catSearch"><img src="search.png"></a>
<p>Search according to your needs</p>
</section>
<section class="4u$ 12u$(small)">
<a href="productmenu.php?n=0"><img src="product.png"></a>
<p>Our products</p>
</section>
</div>
</div>
</section>
<!-- Footer -->
<!--<footer id="footer">
<div class="container">
<div class="row">
<section class="4u 6u(medium) 12u$(small)">
<h3>Welcome to Digital market</h3>
<ul class="alt">
<li><a href="#">Lorem ipsum dolor sit amet.</a></li>
<li><a href="#">Quod adipisci perferendis et itaque.</a></li>
<li><a href="#">Itaque eveniet ullam, veritatis reiciendis?</a></li>
<li><a href="#">Accusantium repellat accusamus a, soluta.</a></li>
</ul>
</section>
<section class="4u 6u$(medium) 12u$(small)">
<h3>Nostrum, repellat!</h3>
<p>Tenetur voluptate exercitationem eius tempora! Obcaecati suscipit, soluta earum blanditiis.</p>
<ul class="alt">
<li><a href="#">Lorem ipsum dolor sit amet.</a></li>
<li><a href="#">Id inventore, qui necessitatibus sunt.</a></li>
<li><a href="#">Deleniti eum odit nostrum eveniet.</a></li>
<li><a href="#">Illum consectetur quibusdam eos corporis.</a></li>
</ul>
</section>
<section class="4u$ 12u$(medium) 12u$(small)">
<h3>Contact Us</h3>
<ul class="icons">
<li><a href="#" class="icon rounded fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="#" class="icon rounded fa-facebook"><span class="label">Facebook</span></a></li>
<li><a href="#" class="icon rounded fa-pinterest"><span class="label">Pinterest</span></a></li>
<li><a href="#" class="icon rounded fa-google-plus"><span class="label">Google+</span></a></li>
<li><a href="#" class="icon rounded fa-linkedin"><span class="label">LinkedIn</span></a></li>
</ul>
<ul class="tabular">
<li>
<h3>Address</h3>
1234 Somewhere Road<br>
Nashville, TN 00000
</li>
<li>
<h3>Mail</h3>
<a href="#">someone@untitled.tld</a>
</li>
<li>
<h3>Phone</h3>
(000) 000-0000
</li>
</ul>
</section>
</div>
<ul class="copyright">
<li>© Untitled. All rights reserved.</li>
<li>Design: <a href="http://templated.co">TEMPLATED</a></li>
<li>Images: <a href="http://unsplash.com">Unsplash</a></li>
</ul>
</div>
</footer>-->
</body>
</html>