{% extends request.master_template %}
{% block meta_title %}{% if request.subdomain == 'micro' %}Micro HR Reviews & Digital Badge Testimonials{% else %}HR Certification Prep Reviews & Testimonials | HRCP{% endif %}{% endblock meta_title %}
{% block meta_description %}See what our customers have to say about our HR certification prep programs. We strive to help HR professionals earn the certifications they deserve and it shows!{% endblock meta_description %}
{% block page_title %}Testimonials{% endblock %}
{% block page_class %}home-page{% endblock %}
{% block header_text %}Customer Testimonials{% endblock header_text %}
{% block content %}
<div class='container'>
<div class='row'>
<div id='breadcrumbs'>
Home > Testimonials
</div>
</div>
<div class="page_content">
{% if request.subdomain == 'micro' %}
<h1 class='micro-blue page-heading' style='margin-bottom:1em;'>Testimonials</h1>
{% endif %}
<p>
{% if request.subdomain == 'recert' %}
HRrecert is powered by HRCP, a leading provider of human resource study materials. We have been educating HR professionals for more than 30 years. Here is what our customers are saying about the HRrecert online courses:
{% else %}
Since 1995 HRCP has helped thousands prepare for the Human Resource Certification exams. Here is what our customers are saying about the {% if request.subdomain == 'micro' %}Micro HR Courses{% else %}HRCP Program{% endif %}:
{% endif %}
</p>
<ul>
{% for testimonial in testimonials %}
<li>
{{ testimonial.content|safe }} - <i>{% if testimonial.customer_name %}{{ testimonial.customer_name }}{% else %}Anonymous{% endif %}</i>
<br>
<br>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
{% endblock %}