-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEdit-Profile.html
More file actions
284 lines (192 loc) · 9.3 KB
/
Edit-Profile.html
File metadata and controls
284 lines (192 loc) · 9.3 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<!DOCTYPE html>
<head>
<title>Edit Profile</title>
<link rel="icon" href="Images/Brogrammerz.jpg">
<link rel="stylesheet" href="Profile.css">
</head>
<body>
<div id="body">
<nav>
<div class="logo-box">
<img src="Images/Brogrammerz.jpg" alt="Image Not Available">
</div>
<div class="search-box">
<input id="search-user-input" type="text" placeholder="Search Brogrammerz...">
<button onclick="search_users()">Search</button>
</div>
<div class="logo-box">
<img src="Images/Brogrammerz.jpg" alt="Image Not Available">
</div>
</nav>
<hr>
<div class="profile-options">
<div class="profile-options-left">
<a href="About.html">
<button>About</button>
</a>
<button onclick="ranking()">Ranking</button>
<button onclick="explore()">Explore</button>
</div>
<div class="profile-options-right">
<button onclick="save_profile()">Save Profile</button>
<button onclick="show_connections_box()">Connections</button>
<button onclick="logout()">Log Out</button>
<button onclick="delete_profile()">Delete Profile</button>
</div>
</div>
<hr>
<div class="main-box">
<div class="left">
<div class="profile-photo-box">
<img id="display-user-profile-photo" src="" alt="Image Not Available">
</div>
<input id="upload-profile-photo" type="file" accept=".jpg, .jpeg, .png"
onchange="upload_profile_photo()">
<input id="user-name" class="edit-page-input" type="text" placeholder="Enter Your Name">
<textarea id="user-bio" class="edit-page-input" type="text" placeholder="Enter Your Bio"></textarea>
<div class="followers-box">
<button id="follow-btn" disabled>Follow</button>
<span id="user-followers"></span>
</div>
<button id="edit-email-password" onclick="edit_email_password()">Edit E-Mail & Password</button>
<div id="edit-email-password-box" class="edit-email-password-hide">
<input id="user-email" class="edit-page-input" type="text" placeholder="Edit Your E-Mail">
<div id="password-box">
<input id="user-password" class="edit-page-input" type="password"
placeholder="Edit Your Password">
<img src="Images/Show Password (Icon).png" alt="Image Not Available" onclick="show_password()">
</div>
</div>
<div class="profile-url">
<span>Profile URL :</span>
<span id="user-profile-url"></span>
</div>
<table>
<tr>
<td>Date Of Birth: </td>
<td><input id="user-date-of-birth" class="edit-page-input" type="text"
placeholder="Enter Your Date Of Birth (DD-MM-YYYY)"></td>
</tr>
<tr>
<td>Gender: </td>
<td>
<select id="user-gender" class="edit-page-input">
<option selected disabled value="">Please Select Your Gender</option>
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="Other">Other</option>
</select>
</td>
</tr>
<tr>
<td>Relationship Status: </td>
<td>
<select id="user-relationship-status" class="edit-page-input">
<option selected disabled value="">Please Select Your Relationship Status</option>
<option value="Single">Single</option>
<option value="In A Relationship">In A Relationship</option>
<option value="Married">Married</option>
<option value="Divorced">Divorced</option>
<option value="Widowed">Widowed</option>
</select>
</td>
</tr>
<tr>
<td>Hometown: </td>
<td><input id="user-hometown" class="edit-page-input" type="text"
placeholder="Enter Your Hometown (City, State, Country)"></td>
</tr>
<tr>
<td>Current City: </td>
<td><input id="user-current-city" class="edit-page-input" type="text"
placeholder="Enter Your Current City (City, State, Country)"></td>
</tr>
<tr>
<td>School(s): </td>
<td>
<div id="multiple-data-school-s"></div>
<br>
<button onclick="add_more_school_s()">Add More</button>
</td>
</tr>
<tr>
<td>College(s): </td>
<td>
<div id="multiple-data-college-s"></div>
<br>
<button onclick="add_more_college_s()">Add More</button>
</td>
</tr>
<tr>
<td>Job(s): </td>
<td>
<div id="multiple-data-job-s"></div>
<br>
<button onclick="add_more_job_s()">Add More</button>
</td>
</tr>
<tr>
<td>Projects(s): </td>
<td>
<div id="multiple-data-project-s"></div>
<br>
<button onclick="add_more_project_s()">Add More</button>
</td>
</tr>
<tr>
<td>Programming Language(s): </td>
<td>
<div id="multiple-data-programming-language-s"></div>
<br>
<button onclick="add_more_programming_language_s()">Add More</button>
</td>
</tr>
<tr>
<td>Portfolio Website: </td>
<td><input id="user-portfolio-website" class="edit-page-input" type="text"
placeholder="Enter Your Portfolio Website (Link)"></td>
</tr>
<tr>
<td>Social Media: </td>
<td>
<div id="multiple-data-social-media"></div>
<br>
<button onclick="add_more_social_media()">Add More</button>
</td>
</tr>
<tr>
<td>Contact E-Mail: </td>
<td><input id="user-contact-email" class="edit-page-input" type="text"
placeholder="Enter Your Contact E-Mail"></td>
</tr>
<tr>
<td>Contact Number: </td>
<td><input id="user-contact-number" class="edit-page-input" type="text"
placeholder="Enter Your Contact Number"></td>
</tr>
<tr>
<td>Resume: </td>
<td>
<div id="resume-box">
<input id="user-resume" type="file" accept=".pdf, .doc, .docx"
onchange="upload_resume()">
</div>
<button id="delete-resume" onclick="delete_resume()">Delete Resume</button>
</td>
</tr>
</table>
</div>
<div class="right">
<h1>Mini Blog</h1>
<hr>
<div id="blogs-list"></div>
</div>
</div>
<hr>
<footer>
<span>© <a href="https://hitarthpathak.github.io" target="_blank">Hitarth Pathak</a></span>
</footer>
</div>
</body>
<script src="Edit-Profile.js"></script>
</html>