-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprofile.html
More file actions
51 lines (49 loc) · 1.47 KB
/
profile.html
File metadata and controls
51 lines (49 loc) · 1.47 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
<!doctype html>
<html>
<head>
<meta charset="utf8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>IITB Database</title>
<link rel="stylesheet" href="css/profile_style.css" />
<script type="text/javascript" language="javascript" src="js/jquery.js"></script>
<script src="js/login.js"></script>
<script>
$(document).ready(function() {
$('.tab li a').click(function() {
$('li').removeClass('active');
$(this).parent().addClass('active');
});
});
</script>
</head>
<body>
<img id='logo' src='images/logo.png' alt='IITB Database'></img>
<div id="topProfileContainer">
<div><a href=#><img id='topRightProfilePic' src='profilePics/default-profile.png' alt='Name'></img></a></div>
<div><a href=#>Raghav Sagar</a></div>
</div>
<!--<div id="topProfileSeparator">
<img id='topRightProfilePic' src='images/separatorRed.png' alt=''></img>
</div> -->
<div id="navigationBar">
<a href=#><div>Contact Us</div></a><!--
--><a href=#><div>My Profile</div></a><!--
--><a href=#><div>Search</div></a><!--
-->
</div>
<!-- Black Menu -->
<ul id="menu" class="black">
<li><a href="#">Basic Info</a></li>
<li class="active"><a href="#">Details</a></li>
<li><a href="#">My Contacts</a></li>
<li><a href="#">Moodle Sync</a></li>
<!--<li><a href="#">Contact</a></li>-->
</ul>
<div id='profileBasicInfo'>
</div>
<div id='profileDetails'>
</div>
<div id='profileMyContacts'>
</div>
</body>
</html>