fix contact form
This commit is contained in:
parent
26cee8ac23
commit
d3342e3ad6
3 changed files with 52 additions and 27 deletions
|
@ -10,18 +10,23 @@ mathjax: false
|
||||||
noindex: false
|
noindex: false
|
||||||
---
|
---
|
||||||
|
|
||||||
Envoyez-nous un mail à <i class="fa fa-envelope-o"></i> contact at crapaud-fou.org
|
Envoyez-nous un mail à <a href="mailto:contact@crapaud-fou.org"><i class="fa fa-envelope-o"></i> contact@crapaud-fou.org</a> ou remplissez ce formulaire:
|
||||||
|
|
||||||
|
|
||||||
<form method="POST" action="http://formspree.io/shelley@crapaud-fou.org">
|
<form method="POST" action="http://formspree.io/contact@crapaud-fou.org" class="contact-form">
|
||||||
<div class="contact-form">
|
<input type="hidden" name="_next" value="{{ site.url }}/merci/" />
|
||||||
<input type="email" class="contact-box" name="email" placeholder="Votre email">
|
<input type="hidden" name="_language" value="fr" />
|
||||||
|
<input type="hidden" name="_format" value="plain" />
|
||||||
|
<input type="hidden" name="_subject" value="Contact crapaud-fou.org" />
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<input type="email" class="contact-box" name="_replyto" placeholder="Votre email">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="contact-form">
|
<div>
|
||||||
<textarea class="contact-box" name="message" placeholder="Écrire votre message"></textarea>
|
<textarea class="contact-box" name="message" placeholder="Votre message" rows="15"></textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button type="submit" id="contact-button">Send</button>
|
<input type="submit" value="Envoyer" id="contact-button">
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
|
12
pages/merci.md
Normal file
12
pages/merci.md
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
---
|
||||||
|
layout: page
|
||||||
|
permalink: /merci/
|
||||||
|
title: Merci pour votre message
|
||||||
|
show_meta: false
|
||||||
|
published: true
|
||||||
|
comments: false
|
||||||
|
mathjax: false
|
||||||
|
noindex: false
|
||||||
|
---
|
||||||
|
|
||||||
|
Merci pour votre message. Si tout se passe bien nous vous réponbdrons le plus vite possible.
|
|
@ -90,6 +90,34 @@
|
||||||
line-height: 1em;
|
line-height: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.contact-form {
|
||||||
|
font-size: .9em;
|
||||||
|
padding-bottom: 15px;
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.contact-form div {
|
||||||
|
margin-top: .2em;
|
||||||
|
}
|
||||||
|
.contact-box {
|
||||||
|
font-size: .9em;
|
||||||
|
border: 2px solid #90a959;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding-bottom: 15px;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#contact-button{
|
||||||
|
background-color:#90a959;
|
||||||
|
border-radius: 4px;
|
||||||
|
font-size: .9em;
|
||||||
|
padding: .5em 2em;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@media (min-width: 56em) {
|
@media (min-width: 56em) {
|
||||||
.sidebar {
|
.sidebar {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
|
@ -113,23 +141,3 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact-form {
|
|
||||||
font-size: .9em;
|
|
||||||
|
|
||||||
padding-bottom: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.contact-box {
|
|
||||||
font-size: .9em;
|
|
||||||
border: 2px solid #90a959;
|
|
||||||
border-radius: 4px;
|
|
||||||
padding-bottom: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#contact-button{
|
|
||||||
background-color:#90a959;
|
|
||||||
border-radius: 4px;
|
|
||||||
font-size: .9em;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue