-
Notifications
You must be signed in to change notification settings - Fork 0
/
UserProfileView.jsp
142 lines (139 loc) · 3.26 KB
/
UserProfileView.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
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
.header {
overflow:hidden;
background-color:#b3e0ff;
padding: 20px 10px;
}
.header a {
float: left;
color: #66b5ff;
text-align:center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
}
.header a.logo {
overflow:hidden;
display:block;
float:left;
}
.header-left {
float:right;
}
.header a:hover {
background-color:#ddd;
color: #0084ff;
}
.header-right{
float:right;
}
.button1 {
background-color:#38acec;
border:none;
color: white;
padding: 20px;
text-align:center;
text-decoration:none;
display:inline-block;
font-size: 16px;
cursor:pointer;
float:left;
}
.buttonr {
background-color:#38acec;
border:none;
color: white;
padding: 20px;
text-align:center;
text-decoration:none;
display:inline-block;
font-size: 16px;
cursor:pointer;
float:left;
}
.roundbutton {
border-radius: 50%;
float: left;
}
.roundbutton:hover {
background-color:#ddd;
color: #0084ff;
}
.footer {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
background-color:#e6e6e6;
color: black;
text-align: left;
}
h2 {
color: #808080;
}
input[type='submit']{
background-color: red;
color: white;
padding: 10px 15px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 10%;
opacity: 0.9;
}
input[type='submit']:hover{
opacity:1;
}
input[type='submit']{
float:center;
width:10%;
}
</style>
</head>
<body background="back.jpg">
<% if((String)session.getAttribute("Name")==null)
{
response.sendRedirect("Login.jsp");
}
%>
<div class="header">
<img src="logo.png" alt="logo" class="logo" height="50" width="200">
<br>
<a href="AfterLogin.jsp" style="float:left;"><img src="1_1.jpg" alt="logo" height="50" width="50" style="float:left; border-radius:5px;"></a>
<div class="header-right">
<a href="helpus.html">Help Us to Find Someone</a>
<a href="GetInvolved.html">Get Involved</a>
<a href="AboutUs.html">About Us</a>
<button class="buttonr roundbutton" style= " width: 100px; height:60px; text-align: center; float: left;">Helpline</button>
<a href="FAQs.jsp"><button class="buttonr roundbutton" style= " width: 100px; height:60px; float: left;"">FAQ</button></a>
</div>
</div>
<fieldset>
<legend><b><h1>PHOTO</h1></b></legend>
<form method="post" action="InsertProfile" enctype="multipart/form-data">
<br>
<br>
<br>
<br>
<label><b>Choose picture</b></label>
<br><br><br>
<input type="file" name="image"/>
<br><br><br>
<input type="submit">
<br>
<br>
</form>
</fieldset>
<div class = "footer">
<p>© Copyright 2018 Help4U.com.<br>All Rights Reserved.<br>
Powered By Enhance Technologies and St.Angelo's </p>
</div>
</body>
</html>