-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
101 lines (93 loc) · 3.73 KB
/
index.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
<?php
require("includes/common.php");
// Redirects the user to products page if he/she is logged in.
if (isset($_SESSION['email'])) {
header('location: products.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FPFS</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/style.css" rel="stylesheet">
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</head>
<body style="padding-top: 50px;">
<!-- Header -->
<?php
include 'includes/header.php';
?>
<!--Header end-->
<div id="content">
<!--Main banner image-->
<div id = "banner_image">
<div class="container">
<center>
<div id="banner_content">
<h1>नमामः अन्नदाता</h1>
<p>किसान की उन्नति, देश की प्रगति</p>
<br/>
<a href="products.php" class="btn btn-danger btn-lg active">खरीदें</a>
</div>
</center>
</div>
</div>
<!--Main banner image end-->
<!--
<!--Item categories listing
<div class="container">
<div class="row text-center" id="item_list">
<div class="col-sm-4">
<a href="prodcts.php#फल एवं सब्जियां" >
<div class="thumbnail">
<img src="img/Fruits-HD-Wallpaper (2).jpg" alt="">
<div class="caption">
<h3>फल एवं सब्जियां</h3>
<p>ताज़ा और साफ़ सब्जी हमारी,
स्वस्थ हो देश का हर नर नारी</p>
</div>
</div>
</a>
</div>
<div class="col-sm-4">
<a href="produts.php#अनाज" >
<div class="thumbnail">
<img src="img/pulses_Final.jpeg" alt="">
<div class="caption">
<h3>अनाज</h3>
<p>जन जन का पेट भरा हो पूरा,
हर घर जाये धान हमारा</p>
</div>
</div>
</a>
</div>
<div class="col-sm-4">
<a href="producs.php#अन्य" >
<div class="thumbnail">
<img src="img/Others1_1.png" alt="">
<div class="caption">
<h3>अन्य उत्पाद</h3>
<p></p>
</div>
</div>
</a>
</div>
</div>
</div>
<!--Item categories listing end
</div>
-->
<!--Footer-->
<?php
include 'includes/footer.php';
?>
<!--Footer end-->
</body>
</html>