| Line 5... |
Line 5... |
| 5 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
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>
|
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>
|
7 |
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
|
| 8 |
<script language="javascript" type="text/javascript" src="/js/jquery.validate.js"></script>
|
8 |
<script language="javascript" type="text/javascript" src="/js/jquery.validate.js"></script>
|
| 9 |
#include ( "templates/commoncssfiles.vm" )
|
9 |
#include ( "templates/commoncssfiles.vm" )
|
| - |
|
10 |
<script>
|
| - |
|
11 |
$("#contactForm").validate({
|
| - |
|
12 |
submitHandler: function(form) {
|
| - |
|
13 |
form.submit();
|
| - |
|
14 |
}
|
| - |
|
15 |
});
|
| - |
|
16 |
</script>
|
| 10 |
</head>
|
17 |
</head>
|
| 11 |
<body>
|
18 |
<body>
|
| 12 |
#include("templates/header.vm")
|
19 |
#include("templates/header.vm")
|
| 13 |
|
20 |
|
| 14 |
<!--Contact Us Starts Here-->
|
21 |
<!--Contact Us Starts Here-->
|
| Line 36... |
Line 43... |
| 36 |
<li>Message</li>
|
43 |
<li>Message</li>
|
| 37 |
</ul>
|
44 |
</ul>
|
| 38 |
</div>
|
45 |
</div>
|
| 39 |
|
46 |
|
| 40 |
<div class="contactUs_formContainerRight">
|
47 |
<div class="contactUs_formContainerRight">
|
| 41 |
<form action="/contact-us" method="post">
|
48 |
<form id="contactForm" action="/contact-us" method="post">
|
| 42 |
<ul class="contactUs_formUL">
|
49 |
<ul class="contactUs_formUL">
|
| 43 |
<li><input name="name" type="text" style="width:250px;" /></li>
|
50 |
<li><input name="name" type="text" style="width:250px;" required/></li>
|
| 44 |
<li><input name="email" type="text" style="width:250px;" /></li>
|
51 |
<li><input name="email" type="text" style="width:250px;" required/></li>
|
| 45 |
<li><input name="city" type="text" style="width:250px;" /></li>
|
52 |
<li><input name="city" type="text" style="width:250px;" required/></li>
|
| 46 |
<li><input name="state" type="text" style="width:250px;" /></li>
|
53 |
<li><input name="state" type="text" style="width:250px;" required/></li>
|
| 47 |
<li><input name="mobile" type="text" style="width:250px;" /></li>
|
54 |
<li><input name="mobile" type="text" style="width:250px;" required/></li>
|
| 48 |
<li><select name="category">
|
55 |
<li><select name="category">
|
| 49 |
<option>Corporate</option>
|
56 |
<option>Corporate</option>
|
| 50 |
<option>General</option>
|
57 |
<option>General</option>
|
| 51 |
<option>Feedback</option>
|
58 |
<option>Feedback</option>
|
| 52 |
<option>Bulk</option>
|
59 |
<option>Bulk</option>
|
| 53 |
</select></li>
|
60 |
</select></li>
|
| 54 |
<li><textarea name="msg" class="contactUs_TextArea"></textarea></li>
|
61 |
<li><textarea name="msg" class="contactUs_TextArea" required></textarea></li>
|
| 55 |
<li><input class="contactUs_submit" value="SUBMIT" type="submit"/></li>
|
62 |
<li><input class="contactUs_submit" value="SUBMIT" type="submit"/></li>
|
| 56 |
</ul>
|
63 |
</ul>
|
| 57 |
</form>
|
64 |
</form>
|
| 58 |
</div>
|
65 |
</div>
|
| 59 |
</div>
|
66 |
</div>
|