-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathProfile.html
63 lines (57 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Masai | Profile</title>
<link rel="stylesheet" href="style/navbar.css">
<style>
#profile_container {
width: 20%;
margin: auto;
margin-top: 50px;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
padding: 20px;
border-radius: 10px;
}
h3 {
margin-top: 5px;
margin-bottom:5px;
}
</style>
</head>
<body>
<div id="navbar">
<div id="navbar_div">
<img id="logo" src="https://www.masaischool.com/img/navbar/logo.svg"
onclick="window.location.href='student.html'">
<div onclick="window.location.href='lectures.html'">Lectures</div>
<div onclick="window.location.href='Assignment.html'">Assignments</div>
<div>Quizzes</div>
<div>Tickets</div>
<div>Discussions</div>
<div>Notifications</div>
<div>Electives</div>
</div>
<div id="navbar_div2">
<div id="name" onclick="window.location.href='Profile.html'"></div>
<button id="logout" onclick="window.location.href='login.html'">LOG OUT</button>
</div>
</div>
<div id="sub_navbar">
<div>Profile</div>
</div>
<div id="profile_container">
<h3>Name: - </h3>
<span id="user"></span>
<h3>MasaiId: - </h3>
<span id="masaiid"></span>
<h3>Email: - </h3>
<span id="mail"></span>
<h3>UserName: - </h3>
<span id="username"></span>
</div>
</body>
</html>
<script src="script/navbar.js"></script>