{# pages/simple_form.html.twig #}
{% extends '@FirstMidAtlanticTheme/theme.html.twig' %}
{% form_theme form with '@FirstMidAtlanticTheme/form/theme.html.twig' only %}
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('assets/templates/form.css', 'theme') }}" />
{{ parent() }}
{% endblock %}
{% block contentregion %}
{% if form_title is defined %}<h2>{{ form_title}} </h2>{% endif %}
{% block page_form %}
{{ form(form) }}
{% endblock page_form %}
{% endblock %}
{% block body_javascript %}
{{ parent() }}
<script type="text/javascript" src="{{ asset('assets/templates/form.js', 'theme') }}"></script>
{% endblock body_javascript %}