-
Notifications
You must be signed in to change notification settings - Fork 4
/
contact_profile.php
148 lines (122 loc) · 5.42 KB
/
contact_profile.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!doctype html>
<html class="no-js" lang="en">
<?php
session_start();
if(!isset($_SESSION["uid"])){
header("location:index.php");
}
?>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Auto Spare Parts</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<?php
//linkkkk
include'top_head.php';
?>
</head>
<body>
<!--header area start-->
<!--offcanvas menu area start-->
<div class="off_canvars_overlay">
</div>
<?php
//include'top_menu_bar_login.php';
?>
<!--offcanvas menu area end-->
<?php
include'header_profile.php';
?>
<!--header area end-->
<!--breadcrumbs area start-->
<div class="breadcrumbs_area">
<div class="container">
<div class="row">
<div class="col-12">
<div class="breadcrumb_content">
<ul>
<li><a href="index.html">home</a></li>
<li>contact us</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--breadcrumbs area end-->
<div class="contact_page_bg">
<!--contact map start-->
<div class="contact_map">
<div class="map-area">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2484.6701389278105!2d-0.13442558407566274!3d51.48256882033922!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x48760532743b90e1%3A0x790260718555a20c!2sU.S.%20Embassy%2C%20London!5e0!3m2!1sen!2sbd!4v1623927462716!5m2!1sen!2sbd" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
<!--contact map end-->
<div class="container">
<!--contact area start-->
<div class="contact_area">
<div class="row">
<div class="col-lg-6 col-md-12">
<div class="contact_message content">
<h3>contact us</h3>
<p>Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram anteposuerit litterarum formas human. qui sequitur mutationem consuetudium lectorum. Mirum est notare quam</p>
<ul>
<li><i class="fa fa-fax"></i> Address : Kot Lakhpat Lahore.</li>
<li><i class="fa fa-phone"></i> <a href="#">waqas23841@gmail.com</a></li>
<li><i class="fa fa-envelope-o"></i> +923044174842</li>
</ul>
</div>
</div>
<div class="col-lg-6 col-md-12">
<div class="contact_message form">
<h3>Tell us your project</h3>
<form id="contact-form" method="POST" action="https://htmldemo.hasthemes.com/mazlay/mazlay/assets/mail.php">
<p>
<label> Your Name (required)</label>
<input name="name" placeholder="Name *" type="text">
</p>
<p>
<label> Your Email (required)</label>
<input name="email" placeholder="Email *" type="email">
</p>
<p>
<label> Subject</label>
<input name="subject" placeholder="Subject *" type="text">
</p>
<div class="contact_textarea">
<label> Your Message</label>
<textarea placeholder="Message *" name="message" class="form-control2" ></textarea>
</div>
<button type="submit"> Send</button>
<p class="form-messege"></p>
</form>
</div>
</div>
</div>
</div>
<!--contact area end-->
</div>
</div>
<!--brand area start-->
<?php
include'brandarea.php';
?>
<!--brand area end-->
<!--footer area start-->
<?php
include'footer.php';
?>
<!-- JS
============================================ -->
<!-- Plugins JS -->
<script src="assets/js/plugins.js"></script>
<!-- Main JS -->
<script src="assets/js/main.js"></script>
</body>
</html>