2017-04-12 12:08:37 +02:00
|
|
|
|
|
2017-04-20 14:31:08 +02:00
|
|
|
|
<form id="form-enterprise" class="form form--enterprise js-parsley" action="//formspree.io/{{ site.email.enterprise }}" method="POST" accept-charset="UTF-8">
|
2017-04-12 12:08:37 +02:00
|
|
|
|
|
2017-04-24 11:55:41 +02:00
|
|
|
|
<p class="form-group">
|
|
|
|
|
<input class="form-control" type="text" id="name" name="name" required>
|
|
|
|
|
<label class="form-label" for="name">Full Name</label>
|
|
|
|
|
</p>
|
2017-04-12 12:08:37 +02:00
|
|
|
|
|
2017-04-24 11:55:41 +02:00
|
|
|
|
<div class="grid grid--full grid-small--half">
|
2017-04-12 15:42:35 +02:00
|
|
|
|
<div class="grid__col">
|
|
|
|
|
<p class="form-group">
|
|
|
|
|
<input class="form-control" type="text" id="company" name="company" required>
|
|
|
|
|
<label class="form-label" for="company">Company</label>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="grid__col">
|
|
|
|
|
<p class="form-group">
|
|
|
|
|
<input class="form-control" type="email" id="email" name="_replyto" required>
|
|
|
|
|
<label class="form-label" for="email">Email</label>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="grid__col">
|
|
|
|
|
<p class="form-group">
|
2017-04-24 15:53:00 +02:00
|
|
|
|
<input class="form-control" type="tel" id="phone" name="phone">
|
2017-04-12 15:42:35 +02:00
|
|
|
|
<label class="form-label" for="phone">Phone</label>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="grid__col">
|
|
|
|
|
<p class="form-group">
|
2017-04-13 18:54:09 +02:00
|
|
|
|
<select class="form-control" id="country" name="country" required data-required="true">
|
|
|
|
|
<option value=""> </option>
|
|
|
|
|
{% for country in site.data.countries %}
|
2017-04-18 17:41:35 +02:00
|
|
|
|
<option value="{{ country.cca2 }}">{{ country.name.common }}</option>
|
2017-04-13 18:54:09 +02:00
|
|
|
|
{% endfor %}
|
|
|
|
|
</select>
|
2017-04-12 15:42:35 +02:00
|
|
|
|
<label class="form-label" for="country">Country</label>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="grid__col">
|
|
|
|
|
<p class="form-group">
|
|
|
|
|
<select class="form-control" id="industry" name="industry" required data-required="true">
|
2017-04-13 14:22:57 +02:00
|
|
|
|
<option value=""> </option>
|
2017-04-20 10:34:32 +02:00
|
|
|
|
{% for industry in page.contact.industries %}
|
|
|
|
|
<option value="{{ industry }}">{{ industry }}</option>
|
|
|
|
|
{% endfor %}
|
2017-04-12 15:42:35 +02:00
|
|
|
|
</select>
|
|
|
|
|
<label class="form-label" for="industry">Industry</label>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="grid__col">
|
|
|
|
|
<p class="form-group">
|
|
|
|
|
<select class="form-control" id="interest" name="interest" required data-required="true">
|
2017-04-13 14:22:57 +02:00
|
|
|
|
<option value=""> </option>
|
2017-04-20 10:34:32 +02:00
|
|
|
|
{% for interest in page.contact.interests %}
|
|
|
|
|
<option value="{{ interest }}">{{ interest }}</option>
|
|
|
|
|
{% endfor %}
|
2017-04-12 15:42:35 +02:00
|
|
|
|
</select>
|
|
|
|
|
<label class="form-label" for="interest">Interested in</label>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2017-04-12 12:08:37 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<p class="form-group">
|
2017-04-12 15:42:35 +02:00
|
|
|
|
<textarea class="form-control" id="comment" name="comment" rows="1"></textarea>
|
2017-04-12 12:08:37 +02:00
|
|
|
|
<label class="form-label" for="comment">Comments</label>
|
|
|
|
|
</p>
|
2017-04-13 14:22:57 +02:00
|
|
|
|
<p class="form-group text-dimmed mini">
|
|
|
|
|
Fields marked with an <span class="required">*</span> are required.
|
|
|
|
|
</p>
|
2017-04-12 12:08:37 +02:00
|
|
|
|
<p class="form-group">
|
|
|
|
|
<input class="btn btn-primary" type="submit" value="Send">
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<div class="alert alert-success animation-slide-in-from-bottom hide">
|
|
|
|
|
<svg class="alert__icon icon icon-success">
|
|
|
|
|
<use xlink:href="/assets/img/sprite.svg#icon-success"></use>
|
|
|
|
|
</svg>
|
|
|
|
|
<p>
|
|
|
|
|
<strong class="alert__title">Great to hear you’re interested!</strong>
|
|
|
|
|
We’ll get in touch soon.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="alert alert-danger hide">
|
|
|
|
|
<svg class="alert__icon icon icon-fail">
|
|
|
|
|
<use xlink:href="/assets/img/sprite.svg#icon-fail"></use>
|
|
|
|
|
</svg>
|
|
|
|
|
<p>
|
|
|
|
|
<strong class="alert__title">Ops, there was an error</strong>
|
|
|
|
|
Would you mind trying again?
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<input type="hidden" name="_subject" value="New contact form submission" />
|
|
|
|
|
</form>
|