-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusercontactus.jsp
165 lines (164 loc) · 4.54 KB
/
usercontactus.jsp
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<%@pageimport="java.sql.*"%> <%! Connection con; Statement stm; int i; String
email; %> <% try { Class.forName("oracle.jdbc.OracleDriver"); Connection
con=DriverManager.getConnection("jdbc:oracle:thin:@127.0.0.1:1521:xe","username","password");
email=(String)session.getAttribute("su1"); } catch(Exception e) {
out.println(e.toString()); } %>
<!DOCTYPE html>
<html lang="en">
<head>
<link
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Baloo+Tamma+2:wght@400&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@1,500&display=swap"
rel="stylesheet"
/>
<title>Contact us</title>
<style>
body {
background-color: rgb(243, 245, 247);
margin: 0em;
}
.lev1 {
display: grid;
grid-template-rows: minmax(1em auto);
font-family: "Nunito", sans-serif;
}
.top {
background-image: url("images/sanit2e3.jpg");
height: 220px;
padding-left: 1em;
}
.head {
font-family: "Baloo Tamma 2", cursive;
font-size: 4.8em;
line-height: 1em;
font-weight: bolder;
padding-top: 10px;
}
.nav {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 2fr 41px;
background-color: rgb(48, 171, 228);
height: 2.5em;
text-align: center;
align-self: center;
line-height: 2.5em;
font-size: 1.3em;
}
.nav :hover {
background-color: rgb(0, 146, 214);
}
.aboutus {
display: grid;
grid-template-columns: 1fr;
}
</style>
</head>
<body>
<div class="lev1">
<div class="top">
<div class="head">
<span style="color: rgb(81, 175, 14)">clean</span
><span style="color: rgb(31, 177, 213)">co</span>
</div>
<div style="font-size: 2.2em; font-family: 'EB Garamond', serif">
One stop for all your sanitary needs
</div>
</div>
<div class="nav">
<div>
<a style="color: black; text-decoration: none" href="userhome.jsp"
>Home
</a>
</div>
<div>
<a style="color: black; text-decoration: none" href="requestjsp1.jsp"
>Request</a
>
</div>
<div>
<a style="color: black; text-decoration: none" href="logout.html"
>Logout</a
>
</div>
<div>
<a style="color: black; text-decoration: none" href="useraboutus.jsp"
>About us</a
>
</div>
<div>
<a
style="color: black; text-decoration: none"
href="usercontactus.jsp"
>Contact us</a
>
</div>
<div></div>
<div style="padding-left: 70px"><%=email%></div>
<div>
<img
src="images/user.png"
height="40"
width="40"
style="border-radius: 20px; padding-top: 4px"
/>
</div>
</div>
<div class="aboutus">
<div>
<div style="font-size: 2.3em; padding: 15px; color: rgb(0, 85, 83)">
Contact:
</div>
<div
style="
font-size: 1.5em;
padding-left: 15px;
background-color: rgb(189, 223, 223);
"
>
Address:
</div>
<div style="padding: 15px; font-size: 1.2em">
Cleanco building, <br />
7th line, Lakshmipuram, <br />
near Pantaloons, <br />
Guntur-522007
</div>
<div
style="
font-size: 1.5em;
padding-left: 15px;
background-color: rgb(189, 223, 223);
"
>
Call us:
</div>
<div style="padding: 15px; font-size: 1.2em">
+918985083224 <br />
+918331992669 <br />
0863 584277
</div>
<div
style="
font-size: 1.5em;
padding-left: 15px;
background-color: rgb(189, 223, 223);
"
>
Email us:
</div>
<div style="padding: 15px; font-size: 1.2em">
[email protected]<br />
</div>
</div>
</div>
</div>
</body>
</html>