-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcontactus.php
152 lines (131 loc) · 5 KB
/
contactus.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
<!doctype html>
<html lang="en">
<head>
<title>Hello, world!</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--styles css-->
<?php include_once "styles.php"; ?>
<!--styles css-->
</head>
<body>
<!--navbar-->
<?php include_once "header.php"; ?>
<!--end of navbar-->
<div class="Maincontainer">
<div class="col-md-12 container-fluid m-0 p-0 ">
<div id="ad-tpadding">
<section id="ad-imgheader1" class="header lg-12">
<div class="l-container-center l-container--tiny">
<div class="l-lg-12">
<h1 id="ad-mainheading" class="hero-header__title">Contact Us</h1>
<h3 class="hero-header__subtitle"></h3>
</div>
</div>
</section>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-2">
<!-- this is left2 -->
</div>
<div id="ad-tpaddingtop" class="col-md-5">
<!-- this is 6grid -->
<h3>Contact Customer Support</h3><hr>
<p>Your question may already be answered in our Support Center.<br> If not, send us a message:</p>
<form>
<div class="col-md-10 multi-horizontal" data-for="name" >
<div class="form-group ">
<label class="form-control-label">Name</label>
<input id="ad-forms" type="text" class="form-control" name="name" data-form-field="Name" required="">
</div>
</div>
<div class="col-md-10 multi-horizontal" data-for="email">
<div class="form-group">
<label class="form-control-label mbr-fonts-style display-7" for="email-form1-4t">Email</label>
<input id="ad-forms" type="email" class="form-control" name="email" data-form-field="Email" required="" id="email-form1-4t">
</div>
</div>
<div class="col-md-10 multi-horizontal" data-for="phone">
<div class="form-group">
<label class="form-control-label">Phone</label>
<input id="ad-forms" type="tel" class="form-control" name="phone" data-form-field="Phone">
</div>
</div>
<div class="col-md-10 multi-horizontal" data-for="form-group">
<label for="exampleFormControlSelect1">How can we help you?</label>
<select id="ad-forms" class="form-control" id="exampleFormControlSelect1">
<option>None</option>
<option>I have questions about plan and priceing</option>
<option>I have questions about payment and invoice</option>
<option>I am having technical difficulties</option>
<option>I would like to cancel my current plan</option>
</select>
</div><br>
<div class="col-10 multi-horizontal" data-for="message">
<label class="form-control-label">Message</label>
<textarea id="ad-forms" type="text" class="form-control " name="message" rows="7" data-form-field="Message"></textarea>
<div class="container" style="padding-top: 10px;">
<span class="input-group-btn">
<button id="ad-forms" href="#" type="submit" class="btn btn-primary btn-form display-4">SEND FORM</button>
</span>
</div>
</div>
</form>
</div>
<div class="col-3-md" id="ad-tpaddingtop">
<!-- 2 grid -->
<div class="container-fluid">
<div class="h" id="ad-paddingdiv">
<b> <h3>Phone Support</h3>
<hr>
<br>
<p>phone number</p></b>
<p>084958 13777</p>
<b> <p><b>E-Mail</b></p></b>
<p>[email protected]</p>
<hr>
<h5><b>Address:</b></h5>
<p>S No.158, Near Ashoka gardan., Dharwad Rd, Haliyal, Karnataka 581329</p>
<h5>Hours: Open 24 hours</h5>
<br>
<hr>
<h6><b>Social Support</b></h6>
</div>
</div>
<div class="container-fluid">
<table>
<tr>
<td>
<a class="btn btn-social-icon btn-twitter">
<i class="fa fa-twitter-square fa-2x" aria-hidden="true"></i>
</a></td>
<td>
<a class="btn btn-social-icon btn-twitter">
<i class="fa fa-facebook-square fa-2x" aria-hidden="true"></i>
</a></td>
</tr>
</table>
</div>
<hr>
<div class="col-md-12">
<b>Jobs:</b>
<br>
<a href="#">See Available Positions</a>
</div>
</div>
<div class="col-md-2">
<!-- right -->
</div>
</div>
</div>
</div>
<br>
<!--footer-->
<?php include_once "footer.php"; ?>
<!-- end of footer-->
<?php include_once "script.php"; ?>
</body>
</html>