Template source: contact_us.html

{#{% extends "_layouts/base.html" %}#} {% extends request.master_template %} {% load as_horizontal_form from bootstrap %} {% load honeypot %} {% block meta_title %}Contact HRCP | HR Certification Support{% endblock meta_title %} {% block meta_description %}Have a question or concern regarding our HR certification programs that we can help you with? Contact us via email or traditional mail for a prompt response. {% endblock meta_description %} {% block page_title %}Contact Us{% endblock %} {% block page_class %}contact-page{% endblock %} {% block header_text %}Contact Us{% endblock header_text %} {% block doc_ready %} {% if messages %} {% for message in messages %} bootbox.alert('{{message}}',function(){bootbox.hideAll();}); {% endfor %} {% endif %} {% endblock %} {% block content %} <script src='https://www.google.com/recaptcha/api.js' async defer></script> <div class='container'> <div class='row'></div> <div class='row' id='breadcrumbs'> About > Contact Us </div> {% if request.subdomain == 'micro' %} <h1 class='micro-blue page-heading' style='margin-bottom:1em;'>Contact Us</h1> {% endif %} <p><strong>You can contact us by e-mail or regular mail.</strong></p> {% if response_error %} <h3 class='error'>{{ response_error }}</h3> {% endif %} <form id='contact_form' method='POST' action='.' class='form-horizontal'> {% csrf_token %} <input type="hidden" name="form_ts" value="{{ form_ts }}" /> {{ form|as_horizontal_form }} {% render_honeypot_field %} <div class='g-recaptcha' data-sitekey="{{ site_key }}" style='margin:20px 0 20px 195px;'></div> <button id='submit' type='submit' style='margin:0 0 25px 143px;'>Send Now</button> </form> <p>Please enter a valid email address. Without a valid email address, we are unable to respond to your request. If you do not hear from us within one business day, please try your request again. Thank you for contacting us!</p> <hr size='1' style='margin:10px 0;' /> <table> <tr> <td valign='top'>Office Hours:</td> <td style='font-weight:bold;'> Open M-F 9:00 am to 5:00 pm Mountain Time<br/> Closed most state and federal holidays. </td> </tr> <tr><td valign='top' width='100'>Phone:</td><td style='font-weight:bold;'>1-801-343-3699</td></tr> <tr><td valign='top'>Regular Mail:</td><td style='font-weight:bold;'>{% if request.subdomain == 'recert' %}HRrecert{%else%}HRCP, L.C.{%endif%} <br/>2696 N University Avenue Suite 200<br />Provo, UT 84604</td></tr> </table> </div> {% endblock %}