diff options
author | hardythe1 | 2014-09-22 16:49:59 +0530 |
---|---|---|
committer | hardythe1 | 2014-09-22 16:49:59 +0530 |
commit | 637e23db7740d888478056aa937dd6804c6d80d3 (patch) | |
tree | a105d88c9105fd1d62b7bef991cd057312a6bcb4 /static/website/templates/contact.html | |
parent | 86165f1f8a7a9b87bb2a563c795935c7583bb932 (diff) | |
download | scipy2014-637e23db7740d888478056aa937dd6804c6d80d3.tar.gz scipy2014-637e23db7740d888478056aa937dd6804c6d80d3.tar.bz2 scipy2014-637e23db7740d888478056aa937dd6804c6d80d3.zip |
added testcontact form instead of mentioning individual email addresses
Diffstat (limited to 'static/website/templates/contact.html')
-rw-r--r-- | static/website/templates/contact.html | 55 |
1 files changed, 20 insertions, 35 deletions
diff --git a/static/website/templates/contact.html b/static/website/templates/contact.html index a6959b6..7ed6d37 100644 --- a/static/website/templates/contact.html +++ b/static/website/templates/contact.html @@ -6,39 +6,24 @@ Contact Us {% block content %} <h3>Contact Us</h3> -<p>For any queries regarding registration, accomodation or any other issues, please feel free to contact us.</p> -<table class="table table-bordered"> - <tr> - <td> - FOSSEE (cfd-lab) - </td> - <td> - +91-22-25764133 - </td> - <td> - <a href="mailto:scipy@fossee.in">scipy[at]fossee[dot]in</a> - </td> - </tr> - <tr> - <td> - Hardik Ghaghada - </td> - <td> - +91-8879261812 - </td> - <td> - <a href="mailto:hardik@fossee.in">hardik[at]fossee[dot]in</a> - </td> - </tr> -</table> -<table class="table table-bordered"> - <tr> - <td> - Alternatively you may write us on - </td> - <td> - <a href="mailto:info@fossee.in">info[at]fossee[dot]in</a> - </td> - </tr> -</table> +<hr> + +<p>Feel free to drop us a message regarding any of your queries.</p> + +{% if mailsent %} +<p>Thank you for contacting us ! We will be reaching you out soon.</p> +{% endif %} + +<form action="/test-contact/" method="POST" role="form"> +{% csrf_token %} + <label for="user_email">Your Email</label> + <input name="user_email" id="user_email" type="text" class="form-control"> + <label for="user_name">Your Name</label> + <input name="user_name" id="user_name" type="text" class="form-control"> + <label for="subject">Subject</label> + <input name="subject" id="subject" type="text" class="form-control"> + <label for="message">Your Message</label><br> + <textarea name="message" rows="4" cols="75"></textarea> + <br><input class="btn btn-default" type="submit" value="Send"> +</form> {% endblock %} |