-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcontacts.php
154 lines (107 loc) · 5.78 KB
/
contacts.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
149
150
151
152
153
154
<?php include("assets/includes/head.php");?>
<meta property="og:site_name" content="<?php echo $lang_array['site-name']; ?>" />
<meta property="og:title" content="<?php echo $lang_array['contacts-title']; ?>" />
<meta property="og:description" content="<?php echo $lang_array['contacts-description']; ?>" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://pack2net.com/assets/img/social/website-img.webp" />
<meta property="og:url" content="<?php echo $lang_array['contacts-url']; ?>" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="<?php echo $lang_array['contacts-title']; ?>" />
<meta name="twitter:description" content="<?php echo $lang_array['contacts-description']; ?>" />
<meta name="twitter:site" content="@Pack2Net" />
<meta name="twitter:image" content="https://pack2net.com/assets/img/social/website-img.webp" />
<meta name="twitter:creator" content="@Pack2Net" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="<?php echo $lang_array['contacts-url']; ?>" />
<!-- #Social Media End -->
<title><?php echo $lang_array['contacts-title']; ?></title>
<meta name="description" content="<?php echo $lang_array['contacts-description']; ?>" />
<meta name="keywords" content="<?php echo $lang_array['contacts-keywords']; ?>" />
</head>
<!-- End Head -->
<body>
<!-- Preloader -->
<?php include("assets/includes/preloader.php");?>
<!-- End Preloader -->
<!-- Header -->
<?php include("assets/includes/header.php");?>
<!-- End Header -->
<!-- Content -->
<main>
<section class="section-parallax page-image-title"
style="background-image: url(https://pack2net.com/assets/img/images/contact-01.webp);">
<div class="section-mask"></div>
<div class="section-content">
<div class="container">
<h1 class="text-white">Contact us</h1>
</div>
</div>
</section>
<section class="section-white section-padding-08">
<div class="container">
<div class="row">
<div class="col-lg-6 px-md-5 mb-5 mb-lg-0">
<h4 class="text-dark">Say Hi!</h4>
<h2 class="text-dark font-size-3">Whenever you need us, we’re <span
class="text-blue">here</span> for you</h2>
<p class="pt-4 pb-5 text-text">We’re here to help and answer any question you might have, we
look forward to hearing from you.</p>
<h6 class="d-inline-block me-5"><a href="tel:+201222898163" class="text-dark">+20 122 2898
163</a></h6>
<h6 class="d-inline-block"><a href="mailto:info@pack2net.com"
class="text-dark">info@pack2net.com</a></h6>
</div>
<div class="col-lg-6 px-md-5">
<h3 class="mb-4">Post a Comment</h3>
<form name="contactform" id="contactform">
<div class="row">
<div class="col-lg-12">
<div class="form-outline mb-4">
<textarea class="form-control" id="contactformcomment" name="contactformcomment"
placeholder="Comment"></textarea>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="form-outline mb-4">
<input type="text" class="form-control" id="contactformname"
name="contactformname" placeholder="Name" />
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="form-outline mb-4">
<input type="text" class="form-control" id="contactformemail"
name="contactformemail" placeholder="Email" />
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="form-outline mb-4">
<input type="text" class="form-control" id="contactformphone"
name="contactformphone" placeholder="Phone" />
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="form-outline mb-4">
<input type="text" class="form-control" id="contactformcountry"
name="contactformcountry" placeholder="Country" />
</div>
</div>
<div class="col-lg-12">
<button type="submit" class="btn-eff-01 btn-eff-02-pre">Submit</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
</main>
<!-- End Content -->
<!-- Footer -->
<?php include("assets/includes/footer.php");?>
<!-- End Footer -->
<!-- JS -->
<?php include("assets/includes/scripts.php");?>
<script src="assets/js/validate-contact.js"></script>
<!-- End JS -->
</body>
</html>