forked from sujaykundu777/devlopr-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-formspree.html
18 lines (17 loc) · 921 Bytes
/
contact-formspree.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!-- Formspree https://formspree.io -->
<!--Add the formspree email in config.yml -->
<form action="https://formspree.io/{{ site.formspree_email }}" method="POST" >
<div class="form-group">
<label for="contact_form_name">Your Name :</label>
<input type="text" class="form-control" name="name" id="contact_form_name" placeholder="Enter Your Name">
</div>
<div class="form-group">
<label for="contact_form_email">Your Email :</label>
<input type="email" class="form-control" name="_replyto" id="contact_form_email" placeholder="Enter Your Email">
</div>
<div class="form-group">
<label for="contact_form_message"> Your Message :</label>
<textarea name="_message" class="form-control" id="contact_form_message" placeholder="Enter Your Message"></textarea>
</div>
<button type="submit" value="Send" class="btn btn-lg btn-dark">Submit</button>
</form>