{% extends 'base.html' %}{% load permissions %}
{% block bodyclass %}home-page cookie-banner{% endblock %}
{% block content %}
{% if site.hero_image %}
<div class="hero" style="background-image:url({{ site.hero_image.url }});{% if site.hero_image_height %}height:{{ site.hero_image_height }}px;{% endif %}"></div>
{% endif %}
{% has_perm 'hide_home_page_info' %}{% else %}
<div class="row">
<div class="col-xs-6 home-benefits">
{% if site.home_page_copy %}{{ site.home_page_copy|safe }}{% else %}
<h4>All the tools you and your business need to select and purchase leads. Right at your fingertips.</h4>
<div class="row">
<div class="col-xs-2 home-benefits-icon home-vendors"></div>
<div class="col-xs-10">
<h5>On-Demand Customers</h5>
<p>{{ site.name }} lets you control all aspects of your lead and call purchasing.</p>
</div>
</div>
<div class="row">
<div class="col-xs-2 home-benefits-icon home-dedupe"></div>
<div class="col-xs-10">
<h5>De-duplication</h5>
<p>Leads are filtered for duplication for you. No need to pay for the same lead twice.</p>
</div>
</div>
<div class="row">
<div class="col-xs-2 home-benefits-icon home-reviews"></div>
<div class="col-xs-10">
<h5>Real Time Campaign Optimizations</h5>
<p>Our self service easy-to-use controls allow you modify and optimize your call and lead campaigns on the fly.</p>
</div>
</div>
<div class="row">
<div class="col-xs-2 home-benefits-icon home-payments"></div>
<div class="col-xs-10">
<h5>Easy Payments</h5>
<p>Getting leads has never been easier. With our simple online payment process you can start receiving leads in a matter of minutes.</p>
</div>
</div>
{% endif %}
</div>
<div class="col-xs-6 home-signup">
{% if not site.is_hidden %}
{% has_perm 'can_register_from_home_page' %}
{% include 'registration/registration_form.html' %}
{% else %}
<div class="well">
<h2>Contact Us</h2>
{% include 'support/contact_form.html' %}
</div>
<div class="registration-success">
<div class="well">
<h2>Thank you</h2>
<p>We appreciate the input. Someone will reach out to you in a timely manner.</p>
</div>
</div>
{% end_has_perm %}
{% endif %}
</div>
</div>
{% end_has_perm %}
{% endblock %}
{% block javascript %}
<script>
(function($, w){
$(function() {
$('.hero-text button').on('click', function() {
var $select = $('.hero-text').find('select');
w.document.location.href = $select.data('target') + "#/" + ($select.val() || '');
});
});
})(window.jQuery, window);
</script>
{% include 'registration/registration_js.html' %}
{% endblock %}