-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
172 lines (154 loc) · 7.24 KB
/
contact.php
File metadata and controls
172 lines (154 loc) · 7.24 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?php
include_once("admin/class/function.php");
$objBlogApp = new blogApp();
$getCategory = $objBlogApp->manageCategory();
?>
<?php include_once("includes/header.php") ?>
<!-- Page Content -->
<!-- Banner Starts Here -->
<div class="heading-page header-text">
<section class="page-heading">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="text-content">
<h4>contact us</h4>
<h2>let’s stay in touch!</h2>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- Banner Ends Here -->
<section class="contact-us">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="down-contact">
<div class="row">
<div class="col-lg-8">
<div class="sidebar-item contact-form">
<div class="sidebar-heading">
<h2>Send us a message</h2>
</div>
<div class="content">
<form id="contact" action="" method="post">
<div class="row">
<div class="col-md-6 col-sm-12">
<fieldset>
<input name="name" type="text" id="name" placeholder="Your name"
required="">
</fieldset>
</div>
<div class="col-md-6 col-sm-12">
<fieldset>
<input name="email" type="text" id="email" placeholder="Your email"
required="">
</fieldset>
</div>
<div class="col-md-12 col-sm-12">
<fieldset>
<input name="subject" type="text" id="subject"
placeholder="Subject">
</fieldset>
</div>
<div class="col-lg-12">
<fieldset>
<textarea name="message" rows="6" id="message"
placeholder="Your Message" required=""></textarea>
</fieldset>
</div>
<div class="col-lg-12">
<fieldset>
<button type="submit" id="form-submit" class="main-button">Send
Message</button>
</fieldset>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="sidebar-item contact-information">
<div class="sidebar-heading">
<h2>contact information</h2>
</div>
<div class="content">
<ul>
<li>
<h5>01905833601</h5>
<span>PHONE NUMBER</span>
</li>
<li>
<h5>contactustestmail@gmail.com</h5>
<span>EMAIL ADDRESS</span>
</li>
<li>
<h5>Dhaka, Bangladesh
<br>Netrakona
</h5>
<span>STREET ADDRESS</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-12">
<div id="map">
<div style="width: 100%"><iframe width="100%" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?width=100%25&height=600&hl=en&q=Netrakona,%20Dhaka,%20Bangladesh+(IT%20Tact)&t=&z=14&ie=UTF8&iwloc=B&output=embed"></iframe></div>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-lg-12">
<ul class="social-icons">
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Behance</a></li>
<li><a href="#">Linkedin</a></li>
<li><a href="#">Dribbble</a></li>
</ul>
</div>
<div class="col-lg-12">
<div class="copyright-text">
<p>Copyright 2021 IT Tact Blog | Design: <a rel="nofollow" href="https://facebook.com/johirulshaky" target="_parent">IT Tact</a>
</p>
</div>
</div>
</div>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Additional Scripts -->
<script src="assets/js/custom.js"></script>
<script src="assets/js/owl.js"></script>
<script src="assets/js/slick.js"></script>
<script src="assets/js/isotope.js"></script>
<script src="assets/js/accordions.js"></script>
<script language="text/Javascript">
cleared[0] = cleared[1] = cleared[2] = 0; //set a cleared flag for each field
function clearField(t) { //declaring the array outside of the
if (!cleared[t.id]) { // function makes it static and global
cleared[t.id] = 1; // you could use true and false, but that's more typing
t.value = ''; // with more chance of typos
t.style.color = '#fff';
}
}
</script>
<!-- Author: Johirul Islam
Facebook: https://facebook.com/johirulshaky/
Instagram: https://instagram.com/johirulshaky/
Linkedin: https://linkedin.com/johirulshaky/ -->
</body>
</html>