This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprofile.html
66 lines (59 loc) · 2.56 KB
/
profile.html
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
<!DOCTYPE html>
<html>
<head>
<title>Study Mates</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<script src="js/jquery-min.js"></script>
<script src="js/getUQ.js"></script>
<script src="js/profile.js"></script>
<script src="js/dropdownmenu.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/profile-style.css">
<!--<script type="text/javascript" src="js/checkLogin.js"></script>
<script src="https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/markerclusterer.js"></script>-->
<!--<script type="text/javascript" src="js/changeLogin.js"></script>-->
<link rel="icon" type="image/png" href="image/logo.png" sizes="16x16">
</head>
<body onLoad="getUQ();">
<ul id="nav-bar">
<li class="dropdown">
<button onclick="myFunction()" class="dropbtn"></button>
<div id="myDropdown" class="dropdown-content">
<a href="index.html">Map</a>
<a href="creategroup.html">Create Group</a>
<a href="createmeeting.html">Create Meeting</a>
<a href="group.html">Group</a>
<a href="meeting.html">Meeting</a>
<a href="messages.html">Messages</a>
<a href="profile.html">My Profile</a>
</div>
</li>
<li><a id="all-courses" href="index.html">ALL</a></li>
<li id="signin-wrap"><a id="signin" href="profile.html">Profile</a></li>
</ul>
<div class="container">
<div class="row text-center justify-content-sm-center">
<div class="col text-center" >
<div id="person">
</div>
</div>
</div>
<div class="row text-center justify-content-sm-center">
<div class="col text-center" >
<div id="profilePic">
<img src= "img/profilePic.jpg">
<button class="btn"> Change </button>
</div>
</div>
</div>
<div id="info">
<h3 id="firstname"></h3>
<h3 id = "lastname"></h3>
<h4 id = "studentnum"></h4>
<h4 id = "uqtype"></h4>
<h4 id = "email"></h4>
</div>
</body>
</html>