-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactus.jsp
More file actions
56 lines (49 loc) · 1.51 KB
/
Copy pathcontactus.jsp
File metadata and controls
56 lines (49 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<html>
<div id="outer">
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<jsp:include page="header.jsp"></jsp:include>
<%
String islogin = (String) session.getAttribute("islogin");
if (islogin == null) {
request.setAttribute("notlogin_msg", "Sorry,Please do Login first");
%>
<jsp:forward page="index.jsp"></jsp:forward>
<%
}
%>
<body>
<Font style="color: navy;" size="4">Contact Us:</Font>
<form method="post" name="myform" id="myform" action="query.jsp">
<table width="100%">
<tr>
<td>
<table width="55%" align="left">
<tr>
<td><img src="images/pic01.jpg" /></td>
<td><Font style="color: navy;" size="3"><B>Your
Query:</B></Font><br> <textarea name="query"
style="width: 600px; height: 80px"></textarea><br> <Font
style="color: navy;" size="2"><B>Email:</B></Font><input
type="text" name="email" style="width: 180px;" /> <input
type="submit" value="submit" style="padding: 2px 2px">
</td>
</tr>
</table>
</td>
<td>
<table align="right">
<tr align="left">
<td><Font style="color: navy;" size="3">Cont
No.:7008284836</Font><br> <Font style="color: navy;" size="3">Email
id:pradipmandalraj95@gmail.com</Font><br> <Font style="color: navy;" size="3">Contact
Person:Shonu</Font></td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</body>
<jsp:include page="footer.jsp"></jsp:include>
</div>
</html>