-
Notifications
You must be signed in to change notification settings - Fork 1
/
contacts.html
60 lines (55 loc) · 2.78 KB
/
contacts.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
permalink: /contacts
layout: default
title: Contact us to Get Free Project Consultation | Active Bridge
date-modified: "2024-04-01"
description: Got an amazing project idea? Contact us and get a tech consultation
from an experienced full-stack solution specialist
scripts: [contacts-form]
json-ld: contacts
redirect_from:
- /contact
---
<div class="contacts pt-9">
<div class="wrapper">
<div style="view-transition-name: contacts;">
<p class="page-title">{{ site.data.contacts.title }}</p>
<h1 class="block-inria-title">{{ site.data.contacts.sub_title }}</h1>
<p class="message inria-regular">{{ site.data.contacts.description }}</p>
</div>
<form class="contacts__form" id="contactsForm" action="https://mailer.pwt.workers.dev/" method="post">
<input type="hidden" id="contact-email" name="contactEmail" value="{{ site.email }}">
<div class="contacts__form-group contacts__form-select">
<label class="contacts__form-label" for="subject">Contact Reason*</label>
<select class="contacts__field contacts__field--select" name="subject" id="subject" required="true">
{% for option in site.data.contacts.select.options %}
<option value="{{option.description}}">{{option.description}}</option>
{% endfor %}
</select>
</div>
<div class="contacts__form-group">
<label class="contacts__form-label" for="name"> Your Name*</label>
<input class="contacts__field" type="name" name="name" id="name" placeholder="Alex Howard" required="true">
</div>
<div class="contacts__form-group">
<label class="contacts__form-label" for="email"> Your Email*</label>
<input class="contacts__field" type="email" name="email" id="email" placeholder="[email protected]" required="true">
</div>
<div class="contacts__form-group">
<label class="contacts__form-label contacts__form-label" for="body">Provide the project details and your expectations in case of cooperating with our team</label>
<textarea class="contacts__field" id="body" name="body" placeholder="Type here"></textarea>
</div>
<button class="button contacts__submit-btn" type="submit" id="send" type="submit">Send</button>
<a class="contacts__field contacts__to-faq mb-4" href="/privacy_policy" data-link="transition">{{site.data.contacts.link_to_faq}}</a>
<div class="contacts__after-send after-send">
<h2 class="message inria-bold">{{site.data.contacts.form.description.title}}</h2>
<ul class="after-send__list">
{% for line in site.data.contacts.form.description.lines %}
<li class="description text-justify"> {{ line.description }}</li>
{% endfor %}
</ul>
</div>
</form>
</div>
{% include modal.html %}
</div>