diff options
Diffstat (limited to 'static/website/templates')
-rw-r--r-- | static/website/templates/contact.html | 55 | ||||
-rw-r--r-- | static/website/templates/schedule.html | 3 | ||||
-rw-r--r-- | static/website/templates/venue.html | 2 |
3 files changed, 24 insertions, 36 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 %} diff --git a/static/website/templates/schedule.html b/static/website/templates/schedule.html index a79a7fb..0f07773 100644 --- a/static/website/templates/schedule.html +++ b/static/website/templates/schedule.html @@ -5,7 +5,8 @@ Schedule {% endblock %} {% block content %} -<h3>Contact Us</h3> +<h3>Schedule</h3> +<hr> <p> <em> Will be updated soon. diff --git a/static/website/templates/venue.html b/static/website/templates/venue.html index 5e1935c..1adff73 100644 --- a/static/website/templates/venue.html +++ b/static/website/templates/venue.html @@ -8,6 +8,8 @@ Venue {% endblock %} {% block content %} +<h3>Venue - IIT Bombay</h3> +<hr> <div> <iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d942.3681463328357!2d72.916895!3d19.130779999999998!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3be7c7f4215f57bf%3A0xcf0c03ea45a113e1!2sLecture+Hall+Complex+(LHC)!5e0!3m2!1sen!2sin!4v1410350543516" width="930" height="450" frameborder="0" style="border:0"></iframe> </div> |