blob: da58ed04a52861826f36a2699a3bcd0d2c9f9b13 [file] [log] [blame]
Rushabh Mehta4c6120a2013-09-10 12:18:58 +05301{% extends "lib/website/templates/includes/footer.html" %}
2
Anand Doshi79c4d7c2013-11-21 18:28:25 +05303{% block powered %}<a href="http://erpnext.org" style="color: #aaa;">ERPNext Powered</a>{% endblock %}
Rushabh Mehta4c6120a2013-09-10 12:18:58 +05304
5{% block extension %}
Anand Doshi79c4d7c2013-11-21 18:28:25 +05306<div class="container">
7 <div class="row">
8 <div class="input-group col-sm-6 col-sm-offset-3" style="margin-top: 7px;">
9 <input class="form-control" type="text" id="footer-subscribe-email" placeholder="Your email address...">
10 <span class="input-group-btn">
11 <button class="btn btn-default" type="button" id="footer-subscribe-button">Stay Updated</button>
12 </span>
13 </div>
14 </div>
Rushabh Mehta4c6120a2013-09-10 12:18:58 +053015</div>
Rushabh Mehta4c6120a2013-09-10 12:18:58 +053016<script>
17 $("#footer-subscribe-button").click(function() {
18
Rushabh Mehta4c6120a2013-09-10 12:18:58 +053019 if($("#footer-subscribe-email").val()) {
Akhilesh Darjee7c197692014-01-28 13:03:47 +053020 $("#footer-subscribe-email").attr('disabled', true);
21 $("#footer-subscribe-button").html("Sending...")
22 .attr("disabled", true);
Rushabh Mehta4c6120a2013-09-10 12:18:58 +053023 erpnext.send_message({
24 subject:"Subscribe me",
25 sender: $("#footer-subscribe-email").val(),
26 message: "Subscribe to newsletter (via website footer).",
27 callback: function(r) {
28 if(!r.exc) {
29 $("#footer-subscribe-button").html("Thank You :)")
30 .addClass("btn-success").attr("disabled", true);
31 } else {
32 $("#footer-subscribe-button").html("Error :( Not a valid id?")
33 .addClass("btn-danger").attr("disabled", false);
34 $("#footer-subscribe-email").val("").attr('disabled', false);
35 }
36 }
37 });
38 }
Akhilesh Darjee7c197692014-01-28 13:03:47 +053039 else
40 wn.msgprint("Please enter email address");
Rushabh Mehta4c6120a2013-09-10 12:18:58 +053041 });
42</script>
43{% endblock %}