Skip to content
Snippets Groups Projects
Commit 7170696a authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Contact form

parent 7c3fcf9f
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,8 @@
],
"dependencies": {
"normalize-css": "normalize.css#^4.1.1",
"autosize": "^3.0.18"
"autosize": "^3.0.18",
"jquery": "^3.1.1"
},
"install": {
"path": "theme/static/lib"
......
......@@ -6,3 +6,10 @@ Please reach out and I'll do my best to reply in a timely manner.
Write to [mail@ant.sr](mailto:mail@ant.sr) or leave a message at 848-228-3802.
Looking forward to hearing from you!
<form class="xhr" action="https://api.ant.sr/api/contact" method="post">
<input name="name" placeholder="Name">
<input name="email" type="email" placeholder="Email" required>
<textarea name="text" placeholder="Your message" required></textarea>
<input type="submit" value="Send">
</form>
......@@ -16,3 +16,19 @@
nav.insertBefore(toggle, nav.firstChild);
nav.className += "collapsed";
})("body > div > nav");
/* Submit forms using XHR */
(function(selector) {
$(selector).submit(function(e) {
$.ajax({
type: 'POST',
url: $(selector).attr("action"),
data: $(selector).serialize(),
success: function(response) {
$(selector + " :input").prop("disabled", true);
$(selector).prepend(response);
}
});
return false;
});
})("form.xhr");
......@@ -89,6 +89,7 @@
<script src="{{ SITEURL }}/theme/lib/autosize/autosize.js"></script>
<script>autosize(document.querySelectorAll('textarea'));</script>
{% endif %}
<script src="{{ SITEURL }}/theme/lib/jquery/jquery.js"></script>
<script src="{{ SITEURL }}/theme/js/script.js"></script>
{% include 'analytics.html' %}
</body>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment