Subversion Repositories SmartDukaan

Rev

Rev 20523 | Rev 20525 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
20427 kshitij.so 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
<head>
4
<title>Hotspot Store | Contact Us</title>
5
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
7
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
20519 kshitij.so 8
<script language="javascript" type="text/javascript" src="/js/jquery.validate.js"></script>
20427 kshitij.so 9
#include ( "templates/commoncssfiles.vm" )
20523 kshitij.so 10
<script>
11
	$("#contactForm").validate({
12
  submitHandler: function(form) {
13
    form.submit();
14
  }
15
 });
16
</script>
20427 kshitij.so 17
</head>
18
<body>
19
#include("templates/header.vm")
20
 
21
<!--Contact Us Starts Here-->
22
 
23
<div class="contactUs_Container">
24
 
25
<img src="images/_contact_us_banner.gif" class="contactUs_Image" />
26
 
27
<p><strong>You may be able to find an answer to your query in our help pages.</strong><br />
28
 
29
If our help pages did not provide an answer to your question, please complete the form below. Mandatory fields are marked with*<br /><br />
30
You can also call us on our Toll Free <strong>1800 419 1133</strong><br />
20518 kshitij.so 31
OR Mail us at <strong><a href="mailto:wecare@spicehotspot.co.in" target="_top">wecare@spicehotspot.co.in</a></strong>
20427 kshitij.so 32
</p>
33
 
34
<div class="contactUs_formContainer">
35
<div class="contactUs_formContainerLeft">
36
<ul class="contactUs_formUL">
37
<li>Name*</li>
38
<li>Email*</li>
39
<li>City</li>
40
<li>State</li>
41
<li>Mobile Number</li>
20519 kshitij.so 42
<li>Category*</li>
20427 kshitij.so 43
<li>Message</li>
44
</ul>
45
</div>
46
 
47
<div class="contactUs_formContainerRight">
20523 kshitij.so 48
<form id="contactForm" action="/contact-us" method="post">
20427 kshitij.so 49
<ul class="contactUs_formUL">
20523 kshitij.so 50
<li><input name="name" type="text" style="width:250px;" required/></li>
20524 kshitij.so 51
<li><input name="email" type="email" style="width:250px;" required/></li>
20523 kshitij.so 52
<li><input name="city" type="text" style="width:250px;" required/></li>
53
<li><input name="state" type="text" style="width:250px;" required/></li>
54
<li><input name="mobile" type="text" style="width:250px;" required/></li>
20519 kshitij.so 55
<li><select name="category">
20427 kshitij.so 56
  <option>Corporate</option>
57
  <option>General</option>
58
  <option>Feedback</option>
59
  <option>Bulk</option>
60
</select></li>
20523 kshitij.so 61
<li><textarea name="msg" class="contactUs_TextArea" required></textarea></li>
20522 kshitij.so 62
<li><input class="contactUs_submit" value="SUBMIT" type="submit"/></li>
20427 kshitij.so 63
</ul>
20519 kshitij.so 64
</form>
20427 kshitij.so 65
</div>
66
</div>
67
</div>
68
 
69
 
70
<!--Contact Us Starts Ends Here-->
71
 
72
 
73
 
74
#include("templates/footer.vm")
75
 
76
</body>
77
</html>