-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-enquire-now.php
50 lines (45 loc) · 1.63 KB
/
template-enquire-now.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
<?php
/**
* Template Name: Enquire Now
**/
get_header();
?>
<div class="main_content">
<section class="content_top">
<div class="about_content">
<div class="about_left">
<div id="content-1" class="ab_info">
<h2><?php the_field('enquire_now_heading'); ?></h2>
<p><?php the_field('mandatory_heading'); ?></p>
<div class="enquery_form">
<?php echo do_shortcode('[contact-form-7 id="1803" title="Enquiry Page"]'); ?>
</div>
</div>
</div>
<div class="about_right">
<figure class="about_img"><img src="<?php bloginfo('template_directory'); ?>/images/enquire-now-pic_n.jpg" alt=""></figure>
</div>
<!-- side form start -->
<!--<div class="side_form_container">
<span class="q_btn">QUICK QUERY</span>
<div class="side_form">
<span class="sf_cross"><img src="images/close2.png" alt=""></span>
<div class="sf_inn">
<form>
<h6>All fields are mandatory</h6>
<input type="text" name="" placeholder="Name" class="sf_text_field">
<input type="text" name="" placeholder="Email" class="sf_text_field">
<input type="text" name="" placeholder="Mobile" class="sf_text_field">
<textarea name="" placeholder="Query" class="sf_text_field"></textarea>
<input type="submit" name="" value="Submit" class="submit">
</form>
</div>
</div>
</div>-->
<!-- side form end -->
</div>
</section>
</div>
<?php
get_footer();
?>