HEX
Server: Apache
System: Linux v38079.2is.nl 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: democfellows (10015)
PHP: 8.1.34
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/creativefellows.nl/skl.creativefellows.nl/templates/partials/form.twig
{% set section_class = class ? class : 'page-section__form' %}
	
<div class="page-section {{ section_class }}" id="{{ page.form.url }}">
	<div class="grid-container">
		<div class="grid-x grid-padding-x align-center">

			<div class="cell small-12 medium-10">
				
				{% if section_class == 'page-section__form' %}
					{{ page.form.title|raw }}
				{% endif %}
							
				<form class="form" action="{{ page.form.action }}" method="post" data-abide novalidate>
					<div class="grid-x grid-padding-x">
						{% for field in page.form.fields %}	
							
							{{ field.twig|raw }}
							
						{% endfor %}
					</div>
					
					{{ page.form.formError|raw }}
					{{ page.form.formCaptcha|raw }}
					{{ page.form.button|raw }}
					
				</form>
			
					
				
			</div>	
	
		</div>
	</div>
	
</div>