-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathse.php
More file actions
88 lines (77 loc) · 2.77 KB
/
Copy pathse.php
File metadata and controls
88 lines (77 loc) · 2.77 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
session_start();
include 'dbcon.php';
error_reporting(0);
// if(!(isset($_SESSION["login"]) && $_SESSION["login"] == "OK")) {
// header("Location: login.html");
// exit;
// }
$username = $_SESSION['username'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./base.css">
<title>Second Year</title>
</head>
<body>
<div class="header">
<div class="inner_header">
<div class="logo_container">
<a href="dashboard.php">
<img src="images/Logo.svg" alt="ProjectStack">
</a>
</div>
<ul class="navigation">
<a href="dashboard.php"><li>Projects</li></a>
<?php if((isset($_SESSION["login"]) && $_SESSION["login"] == "OK")) {
echo "<a href='profile.php?username=".$username. "'><li>". $username. "</li></a>";
echo "<a href='logout.php'><li>Logout</li></a>";
}
?>
</ul>
</div>
</div>
<p id="rcorners2" align="center"></p>
<p id="ayetext" align="center">Se.</p>
<p id="ayeyear" >Second Year</p>
<p id="ayesub" >Boost your pointer this year by refering to these projects made in previous years.</p>
<p id="ayesub1" >Everything you need to build a functional project for all your subjects</p><br>
<p id="ayenoofsub" align="center"></p>
<p id="ayenoofsubtext" align="center">5 subjects</p>
<p id="ayesem1box"></p>
<p id="ayesem1">Semester 3</p>
<p id="ayesem2box"></p>
<p id="ayesem2">Semester 4</p>
<a href="subject.php?subject=DBMS&year=SE" id="dbms"><li>Database Management system</li></a>
<a href="subject.php?subject=LD&year=SE" id="ld"><li>Logic Design
</li></a>
<a href="subject.php?subject=DSA&year=SE" id="dsa"><li>Data structures and algorithm analysis</li></a>
<a href="subject.php?subject=JPR&year=SE" id="jpr"><li>Java Programming</li></a>
<a href="subject.php?subject=PY&year=SE" id="py"><li>Python Programming</li></a>
<img src="images/svse.svg" id="svg">
<footer class="sem_footer">
<div class="footer_logo">
<img src="images/Logo.svg">
</div>
<div>
<h3>Read more about<br>our mission</h3>
<a href="about.html"><h4>About Us</h4></a>
</div>
<div>
<h3>Legal</h3>
<h4>T&C</h4>
<h4>Policies</h4>
</div>
<div class="social_links">
<h3>Social</h3>
<h4>Twitter</h4>
<h4>Instagram</h4>
<h4>Facebook</h4>
</div>
</footer>
</body>
</html>