-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
50 lines (47 loc) · 995 Bytes
/
index.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
<?php
error_reporting(0);
session_start();
session_destroy();
if($_SESSION['message'])
{
$message=$_SESSION['message'];
echo "<script type='text/javascript'>
alert('$message')
</script>";
}
?><!DOCTYPE html>
<html>
<head>
<title>Student grading system</title>
<link rel="stylesheet" type="text/css" href="css/index-style.css">
<style type="text/css">
img{
width: 50%;
float: center;
}
</style>
</head>
<body>
<section>
<header>
<div class="logo">
<a href="">
Student grading system</a>
</div>
<div class="toggle"></div>
<ul class="navigation">
<li><a href="login.php">Admin login</a></li>
<li><a href="student_login.php">Student login</a></li>
<li><a href="teacher_login.php">Teacher login</a></li>
<li><a href="feedback_form.php">Feedback</a></li>
</ul>
</header>
</section><br>
<center>
<div class="text">
<h1>Welcome to Student Grading System</h1><br><br>
<img src="images/desk.jpg">
</div>
</center>
</body>
</html>