{% extends 'base.html.twig' %}
{% block title %}
{% if page_title is defined %}{{ page_title }}{% else %}LCAS{% endif %}
{% endblock %}
{% block javascripts %}
{{ parent() }}
{% endblock %}
{% block body %}
<div class="container py-4 my-4">
<div class="row">
<div class="col-6">
<h5>Need Help or more Information about LCAS?</h5>
{{ form_start(contactForm, {'attr': {'id': 'contact_form'}}) }}
{{ form_row(contactForm.name, {'label': 'Name'}) }}
{{ form_row(contactForm.school, {'label': 'School'}) }}
{{ form_row(contactForm.address, {'label': 'Address'}) }}
{{ form_row(contactForm.email, {'label': 'Email'}) }}
{{ form_row(contactForm.phone, {'label': 'Phone Number'}) }}
{{ form_row(contactForm.timetocall, {'label': 'Best Time To Call'}) }}
{{ form_row(contactForm.question, {'label': 'Questions/Comments'}) }}
{{ form_widget(contactForm.recaptcha) }}
<div class="text-end"><button type="submit" class="btn btn-primary">Send Message</button></div>
{{ form_end(contactForm) }}
</div>
<div class="col-6">
<h5><i class="fas fa-graduation-cap"></i> Resources</h5>
<p>Additional planning, instructional, and data tracking resources are included with an active LCAS account. LCAS will also work with you to tailor communication solutions to your needs for accreditation and demonstration of institutional impact on student learning and development. Please use the email option to the left to inquire about additional tools and capabilities of the system.</p>
<p class="fw-bold">Customer Service Information:</p>
<p>Learning Curve Achievement Systems<br/>
PO Box 2017<br/>
Lexington, SC 29071<br/>
USA<br/>
PH: <a href="tel:8034705788">+1 (803) 470-5788</a><br/>
Hours: 9:00 AM to 4:00 PM EST
</p>
<p>We recommend contacting us using the form to the left for better service.</p>
</div>
</div>
</div>
{% endblock %}