-
Notifications
You must be signed in to change notification settings - Fork 4
/
profile.html
45 lines (44 loc) · 2.01 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
<?php
include('inc/sessionStudent.inc.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Learn Center</title>
<?php include('inc/header.inc.php'); ?>
<div class="body2">
<div class="main">
<!-- content -->
<section id="content">
<div class="wrapper">
<div class="pad_top2"> <span><span><h3>Welcome <?php echo $_SESSION['login_user'] ?></h3></span></span></a> </div>
<div class="pad1 pad_top1">
<article class="cols marg_right1">
<figure><a href="profile_courses.html"><img src="images/prof_img1.jpg" alt=""></a></figure>
<span class="font1"><a href="profile_courses.html">My Courses</a></span> </article>
<article class="cols marg_right1">
<figure><a href="profile_exams.html"><img src="images/prof_img2.jpg" alt=""></a></figure>
<span class="font1"><a href="profile_exams.html">Exam Results</a></span> </article>
<article class="cols">
<figure><a href="profile_attendance.html"><img src="images/prof_img3.jpg" alt=""></a></figure>
<span class="font1"><a href="profile_attendance.html">Attendance</a></span> </article>
<article class="cols">
<figure><a href="leave-application.html"><img src="images/prof_img4.jpg" alt=""></a></figure>
<span class="font1"><a href="leave-application.html">Apply for Leave</a></span> </article>
<article class="cols">
<figure><a href="enrol.html"><img src="images/prof_img4.jpg" alt=""></a></figure>
<span class="font1"><a href="enrol.html">Enrol for Courses</a></span> </article>
</div>
</div>
<div class="pad_top2"> <a href="inc\logout.inc.php" class="button"><span><span>LOGOUT</span></span></a>
</div>
<div class="pad_top2"> <a href="changepw.html" class="button"><span><span>Change Password</span></span></a>
</div>
</section>
<!-- content -->
<?php include('inc/footer.inc.php'); ?>
</div>
</div>
<script type="text/javascript">Cufon.now();</script>
</body>
</html>