-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
80 lines (63 loc) · 4.57 KB
/
about.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
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
<?php
session_start();
?>
<head>
<script type="text/javascript">
function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible"
}
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility="hidden"
}
</script>
</head>
<?php
extract($_POST);
if (isset($_SESSION[admin]))
{
require("main1.php");
echo "<div class='str'>hello : "."$_SESSION[admin]"."</div>";
echo "<br><div class='fixed'><div class='title' align='center'>Student Management System</div><div class='content'><div class='str'> Abstract</div><div class='menu'>
Student Management System is website which is helpful for students as well as the school authorities. In the current system all the activities are done manually. Our Student Management System deals with the various activities related to the students. In the website we can register as a user and user has of two types, student and administrator. Administrator has the power to add new user and can edit and delete a user. A student can register as user and can add edit. The administrator can get detailed student information. All the users can get some details of student when They search for particular name and they can search based on blood group which will inform details of the student whom all have that particular blood."."</div></div></div>";
require("footer.php");
exit();
}
?>
if (isset($_SESSION[login]))
{
require("main.php");
echo "<div class='str'>hello : "."$_SESSION[admin]"."</div>";
echo "<br><div class="fixed"><div class="title" align="center">Student Management System</div><div class="content"><div class='str'> Abstract</div><div class='menu'>
Student Management System is website which is helpful for students as well as the school authorities. In the current system all the activities are done manually. Our Student Management System deals with the various activities related to the students. In the website we can register as a user and user has of two types, student and administrator. Administrator has the power to add new user and can edit and delete a user. A student can register as user and can add edit. The administrator can get detailed student information. All the users can get some details of student when They search for particular name and they can search based on blood group which will inform details of the student whom all have that particular blood."."</div></div></div>";
require("footer.php");
exit();
}
?>
<?php
require("main1.php");
echo "<br><div class="fixed"><div class="title" align="center">Student Management System</div><div class="content"><div class='str'> Abstract</div><div class='menu'>
Student Management System is website which is helpful for students as well as the school authorities. In the current system all the activities are done manually. Our Student Management System deals with the various activities related to the students. In the website we can register as a user and user has of two types, student and administrator. Administrator has the power to add new user and can edit and delete a user. A student can register as user and can add edit. The administrator can get detailed student information. All the users can get some details of student when They search for particular name and they can search based on blood group which will inform details of the student whom all have that particular blood."."</div></div></div>";
?>
<div class="fixed"><div class="title" align="center">ADMIN LOGIN</div>
<form id="form1" name="form1" method="post" action="">
<div class='content'> <div class='menu'> ID Number:- <input name="username" type="text" class="menu" id="username" size="25" maxlength="255" /></div>
<p>
<div class='menu'>PASSWORD :-
<input name="password" type="password" class="menu" id="password" size="25" maxlength="255" />
</div>
</p>
<?php
if(isset($found))
{
echo "Invalid Username or Password";
}
?>
<div class='menu'> <input name="submit12" type="submit" class="menu" value="Login" " />    <input name="Submit2" type="reset" class="menu" value="Reset" />
</div><div class='menu'> IF YOU ARE STUDENT PLEASE <a href="studentlogin.php">LOGIN HERE</a> </div>
</div>
</form></div>
<?php
require("footer.php");
?>