-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.php
100 lines (90 loc) · 3.85 KB
/
help.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
<?php
require_once "configuration.php";
require_once $ROOT_PATH."administrator/utility/crud.php";
require_once $ROOT_PATH."administrator/utility/idEncode.php";
require_once "header.php";
require_once "menu.php";
require_once "banner.php";
//session_start();
$galleryData = fetchRecord('product');
?>
<!-- Title & BreadCrumbs -->
<section class="mtop">
<section class="container-fluid container">
<section class="row-fluid">
<!-- Page Title -->
<section id="donation_box">
<section class="container container-fluid">
<section class="row-fluid">
<figure class="span12">
<h2> Help </h2>
</figure>
</section>
</section>
</section>
<!-- end of Page Title -->
</section>
<section class="row-fluid">
<!-- BreadCrumbs -->
<figure id="breadcrumbs" class="span12">
<ul class="breadcrumb">
<li><a href="#">Home</a> <span class="divider">/</span></li>
<li class="active">Help</li>
</ul>
</figure>
<!-- End of breadcrumbs -->
</section>
</section>
</section>
<!-- End of Tile & Breadcrumbs -->
<!-- Start of Blog & Store -->
<section id="blog_store" class="mbtm">
<section class="container-fluid container">
<section class="row-fluid">
<!-- Start of Latest from our blog -->
<figure id="blog" class="span6 first">
<h2 class="title"> Product
<span class="h-line"></span>
</h2>
<div id="slider_blog">
<div class="img span5"> <img src="images/charityProduct.jpg" alt="" /></div>
<div class="content span7">
<div class="post_excerpt">
<h4> <a href="#"> Product</a> </h4>
<p>Product is to give (food, clothes, etc.) in order to help a person or organization, and it also includes to give to a hospital .so that it can be given to someone who needs it.</p>
<a href="viewProduct.php"> <button style=" border:1px solid #a5e7ea; background:#CCFFFF !important; padding:5px 20px !important; display:inline-block; color:#00CCFF; border-radius:5px; -webkit-border-radius:5px; font-size:12px;" >View</button></a>
<a href="login.php"> <button onclick="login.php" style=" border:1px solid #a5e7ea; background:#CCFFFF !important; padding:5px 20px !important; display:inline-block; color:#00CCFF; border-radius:5px; -webkit-border-radius:5px; font-size:12px;" >To know More<i class="icon-signin"></i></button> </a>
</div>
</div>
</div>
</figure>
<!-- End of Latest from our blog -->
<!-- Start of from our Store -->
<figure id="service" class="span6">
<h2 class="title"> Services
<span class="h-line"></span>
</h2>
<div id="slider_blog">
<div class="img span5"> <img src="images/charityService.jpg" alt="" /></div>
<div class="content span7">
<div class="post_excerpt">
<h4> <a href="#"> Services</a> </h4>
<p> Services is to give as a way of helping people for supplying a public need such as serving food ,medical checkup , or utilities such as electricity and water.</p>
<a href="viewServices.php"> <button style=" border:1px solid #a5e7ea; background:#CCFFFF !important; padding:5px 20px !important; display:inline-block; color:#00CCFF; border-radius:5px; -webkit-border-radius:5px; font-size:12px;" >View</button> </a>
<a href="login.php"> <button style=" border:1px solid #a5e7ea; background:#CCFFFF !important; padding:5px 20px !important; display:inline-block; color:#00CCFF; border-radius:5px; -webkit-border-radius:5px; font-size:12px;" >To know More<i class="icon-signin"></i></button> </a>
</div>
</div>
</div>
</figure>
<!-- End of from our Store -->
</section>
</section>
</section>
<!-- End of Blog & Store -->
<?php
require_once "footer.php";
?>