-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcontact.html
66 lines (65 loc) · 2.46 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
layout: default
title: Contact
permalink: '/contact'
heading : "Don’t be shy. Say <span>Hello.</span>"
form_heading : "TELL US ABOUT YOUR PROJECT"
---
<!-- start: contact section -->
<section class="site-contact">
<div class="container">
<div class="row">
<div class="col-lg-5">
<h1 class="site-contact-title">
{{ page.heading }}
</h1>
</div>
<div class="col-lg-6 ml-auto">
<div class="site-contact-form">
<h4>{{ page.form_heading }}</h4>
<form id="contact-form" action="{{ site.fabFormUrl }}" method="POST">
<div class="row">
<div class="col-lg-6">
<input type="text" class="form-control" name="first-name" id="first-name" placeholder="First Name">
</div>
<div class="col-lg-6">
<input type="text" class="form-control" name="last-name" id="last-name" placeholder="Last Name">
</div>
<div class="col-lg-6">
<input type="email" class="form-control" name="email" id="email" placeholder="Email">
</div>
<div class="col-lg-6">
<div class="select-wrapper">
<select class="form-control" id="projectType" name="project-type">
<option value="" selected disabled hidden>Project Type</option>
<option value="gd">Graphics Design</option>
<option value="wb">Web Design</option>
</select>
</div>
</div>
<div class="col-12">
<textarea class="form-control" id="aboutProject" name="about-project" rows="6" placeholder="About the Project"></textarea>
</div>
<div class="col-12">
<button type="submit" class="btn btn-primary" id="contact-form-button">
<span class="btn-area">
<span data-text="Send Message">
Send Message
</span>
</span>
</button>
</div>
<div class="col-12">
<p id="contact-form-status"></p>
</div>
</div>
</form>
<p class="contact-form-generator">
<strong>** </strong><a href="https://fabform.io/" target="_blank">Static website forms</a>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- end: contact section -->