-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
53 lines (49 loc) · 1.3 KB
/
home.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scholarship</title>
<link rel="stylesheet" href="css/style.css">
<style>
p{
padding-top: 40%;
}
</style>
</head>
<body>
<section>
<nav>
<h1>Scholarship</h1>
<div class="navlink">
<ul>
<li><a href="about.php">About</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</div>
</nav>
</section>
<?php
// if(empty($_SESSION['email']))
// {
// header("location:login.php"); }
?>
<section>
<div class="main">
<div class="circle">
<a href="personal.php">
<p>Fill Scholarship form</p>
</a>
</div>
<div class="circle">
<a href="scholarship_status.php"><p>Scholarship Status</p></a>
</div>
<div class="circle">
<a href="acknowledgement.php"><p>Acknowledgement</p></a>
</div>
</div>
</section>
</body>
<html>
<?php //} ?>