forked from coronainfonepal/coronainfonepal.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
49 lines (41 loc) · 1.75 KB
/
contact.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
---
layout: default
title: Contact Us
permalink: /contact/
page_name: contact
---
<section class="contact-section py-6">
<div class="container">
<div class="row">
<div class="col-md-4 contact-info mb-1">
<h2>{% t contact.msg_caption %}</h2>
</div>
<div class="col-12 col-md-8">
<form action="https://formspree.io/[email protected]" method="POST">
<input type="hidden" name="_subject" value="[Mail From Website]" />
<input type="text" class="form-control mb-1" id="name" placeholder="{% t contact.full_name %}" name="Name"
pattern="^[A-Za-z\s]{1,}[\.]{0,1}[A-Za-z\s]{0,}$" required>
<input type="text" class="form-control mb-1" id="phone" placeholder="{% t contact.phone %}" name="Phone"
pattern="[0-9]{10}">
<input type="email" class="form-control mb-1" id="email" placeholder="{% t contact.email %}" name="Email"
pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$" required>
<textarea class="form-control mb-1" rows="5" id="comment" name="Message" placeholder="{% t contact.message %}"
pattern=".{3,}" required></textarea>
<div class="submit mt-3 text-center">
<button type="submit" class="btn btn-outline-dark rounded-0 px-4">{% t common.submit %}</button>
</div>
</form>
</div>
</div>
<div class="row mt-5">
<div class="col-md-6 contact-info mb-1">
<h4>{% t contact.contribute_caption %}</h4>
</div>
<div class="col-12 col-md-6">
<a href="https://github.com/coronainfonepal/coronainfonepal.github.io" target="_blank">
<h4>{% t contact.repo_msg %} <i class="fab fa-github"></i></h4>
</a>
</div>
</div>
</div>
</section>