-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudent_profile.php
More file actions
50 lines (46 loc) · 1.66 KB
/
student_profile.php
File metadata and controls
50 lines (46 loc) · 1.66 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
<?php
session_start();
if(!isset($_SESSION['signed_in'])){
if(!$_SESSION['signed_in']){
header('location:index.php');
exit();
}
}
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/styles_header.css">
<link rel="stylesheet" href="css/styles_footer.css">
<link rel="stylesheet" href="css/user_account.css">
<link rel="stylesheet" href="css/navpannel.css">
<link rel="stylesheet" href="css/profile.css">
<link rel="stylesheet" href="css/subnav.css">
<link rel="stylesheet" href="css/modules.css">
<script src="js/jquery-3.3.1.js"></script>
<script src="js/load_modules.js" type="text/javascript"></script>
<script src="js/load_student_profile.js" type="text/javascript"></script>
<script src="js/subnav.js" type="text/javascript"></script>
<script src="js/load_terms.js" type="text/javascript"></script>
</head>
<body>
<?php include_once("inc/header.php"); ?>
<?php include_once("inc/navpannel.php");?>
<?php
include_once("inc/subnav.php");
?>
<input type="hidden" name="index" id="index" value=<?php echo $_SESSION['username']?>></input>
<div style='float:none;overflow:hidden'>
<div class="lightbox" style="width:30%;margin-left:5vw;float:left;padding:0px;">
<div class="header" style="padding-top:2vh;">
Course Modules</div>
<div id="modulelist"></div>
</div>
<div class="lightbox" style="width:50%;float:left;margin-left:5vw;height:30vh;padding:0px;">
<div class="header" id="course" style="padding-top:0.1vh;"></div>
<div id="description"></div>
</div>
</div>
<?php include_once("inc/footer.php"); ?><br>
</body>
</html>