forked from OvidiuRusu/TW
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudentcourselist.php
More file actions
52 lines (52 loc) · 1.94 KB
/
studentcourselist.php
File metadata and controls
52 lines (52 loc) · 1.94 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
52
<!DOCTYPE html>
<?php
session_start();
if (!isset($_SESSION['username']) || empty($_SESSION['username'])) {
exit();
}
$username = $_SESSION['username'];
?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Student Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
<h1><img src="images/oamlogo3.png" alt="" />Online <span style="font-weight:bold; color:#73868C;">Assignment</span> Manager</h1>
</div>
<div id="container">
<ul id="nav">
<li><a href="index.html">Logout</a></li>
<li><a href="#"><?php echo $username ?></a></li>
</ul>
<div id="contentleft">
<ul id="nav2" style="margin-left: 40px">
<li><a href="studentindex.php">Active Courses</a></li>
<li><a href="#" style="color: #000;">Course List</a></li>
</ul>
<div class="coursebox">
<h3 class="optionale">Limbajul C++<h3>
<h4>Facultatea de Informatica</h4>
<h4>Vei avea ocazia sa descoperi noi concepte la un nivel mai avansat.<h4>
</div>
<div class="coursebox">
<h3 class="optionale">Limbajul .NET<h3>
<h4>Facultatea de Informatica</h4>
<h4>Acumularea de cunostinte medii in limbajul .NET. Un curs foarte interesant cu exemple practice.<h4>
</div>
<div class="coursebox">
<h3 class="optionale">Economie informatica<h3>
<h4>Facultatea de Economie</h4>
<h4>Aspectele economice ale informaticii si modul in care functioneaza o afacere pe domeniul IT.<h4>
</div>
</div>
<!-- <div id="footer">
<div id="bottomlinks">
<a href="index.html">homepage</a> | <a href="mailto:tacutanu.vlad@gmail.com">contact</a> | <a href="images/sitemap.png"> sitemap</a> | © 2015 Mitocariu Emilian • Rusu Ovidiu • Stoian Sorin • Tacutanu Vlad
</div> -->
</div>
</body>
</html>