-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
48 lines (44 loc) · 1.47 KB
/
contact.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
<?php include('header.php'); ?>
<div class="container">
<div class="margin-top">
<div class="row">
<?php include('head.php'); ?>
<div class="col-main">
<div class="cms">
<div class="loader_success"></div>
<div class="contact_add" style="float: right">
<h2>Other Way to Contact Us</h2>
<?php if(phoneNumber()) { ?><p><strong>Phone Number : </strong><?php echo phoneNumber(); ?></p> <?php } ?>
<?php if(email()) { ?><p><strong>Email Address : </strong><?php echo email(); ?></p> <?php } ?>
<?php if(address()) { ?><p><strong>Address : </strong><?php echo address(); ?></p> <?php } ?>
</div>
<input type="hidden" class="emailaddress_admin" value="<?php echo email(); ?>" />
<div class="loader_mail" style="position: absolute;">Sending the Email. Please Wait. . .</div>
<div class="Cotactform">
<div class="personal_info">
<p>
<label>First Name: </label><br />
<input type="text" name="fname" class="fname email_text" />
</p>
<p>
<label>Last Name: </label><br />
<input type="text" name="lname" class="lname email_text" />
</p>
<p>
<label>Your Email Address: </label><br />
<input type="text" id="validate" name="email" class="email email_text" />
</p>
<p>
<label>Message: </label><br />
<textarea class="message" style="width: 580px; height: 225px;"></textarea>
</p>
<p>
<br />
<button class="send"><span>Send</span></button>
</p>
</div>
</div>
</div>
</div>
<?php include('footer.php') ?>
<!-- Made by Vinit Shahdeo -->