-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
39 lines (39 loc) · 893 Bytes
/
about.php
File metadata and controls
39 lines (39 loc) · 893 Bytes
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
<?php
if(!isset($_COOKIE['username']))
{
header("Location:login.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
a{
color:white;
text-decoration: none;
}
section {
font-family: sans-serif;
margin-top: 7.5rem;
}
</style>
<title>About</title>
</head>
<body>
<?php
include("./header.html");
?>
<section>
<p>
This web application was made by the following students of Ferusson College, Pune for their CSC3513 Computer Science Project – I (T.Y.B.Sc 2020-21) -
</p>
<ul>
<li><b>Anish Nair</b> - 8716</li>
<li><b>Hradyesh Singh</b> - 8723</li>
<li><b>Kamran Ansari</b> - 8728</li>
</ul>
</section>
</body>
</html>