forked from prameshbajra/BVC-Student-Portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
91 lines (77 loc) · 3.55 KB
/
admin.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
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>
Student details information.
</title>
<link rel="stylesheet" href="styleadmin.css">
<link rel="stylesheet" href="animate.css">
<link rel="shortcut icon" href="bvc.png" type="image/x-icon" />
<link rel="stylesheet" href="main.css">
<script type="text/javascript" src="date_time.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
</head></br>
<div align="right">
<form action="index.php" method="POST" class="form form--login">
<div class="viewupdate animated ">
<input type="submit" value="Logout">
</div>
</form></div>
<div align="center" style="color: gray" >
<h2 style="color: gray">BVC Engineering College, Odalarevu</h2>
<h3 style="color: gray">Affiliated To JNTUK, Kakinada</h3> Accredited By NBA New Delhi and NAAC With 'A' Grade<br> Approved By AICTE, New Delhi<br> Established in 1997<br><br>
</div>
<div align="right"><span id="date_time" style="color: black"></span>
<script type="text/javascript">
window.onload = date_time('date_time');
</script> </div></br>
<body>
<ul class="menu">
<li><a href="admin.php">Send E-mail</a>
<ul class="submenu1">
<li><a href="emailnew.php">1st year</a></li>
<li><a href="#">2nd year</a></li>
<li><a href="#">3rd year</a></li>
<li><a href="#">4th year</a></li>
</ul>
</li>
<li><a href="stud.php">Student Details</a>
</li>
<li><a href="upf.php">Update Flash News</a></li>
<li><a href="admin.php"> Update Staff Details</a>
<ul class="submenu1">
<li><a href="ustaff.php">Technical Staff</a></li>
<li><a href="unstaff.php">Non-Technical Staff</a></li>
</ul>
</li>
<li><a href="admin.php">
<i class="fa fa-gear" style="font-size:20px;"> Settings</i></a>
<ul class="submenu1">
<li><a href="cha.php">ChangePassword</a></li>
</ul>
</li>
<li><a href="help.php">Help</a></li>
</ul>
<div id="bodyMain">
<div id="bodyMain">
<form id="importExcel" name="import" method="post" enctype="multipart/form-data">
<p id="text" style="color: gray">To insert data into database from Excel,<br> Click the browse button below and select the file you want to upload.<br></p>
<input id="file" type="file" name="file" value="Choose a file"><br />
<input id="submit" type="submit" name="submit" value="Insert">
</form>
<?php
include "functions.php";
import();
?>
<center>
<p><h1 style="color: gray">
WELCOME ADMIN
</h1>
</p></center>
<div id="clear"></div>
</div>
</div>
</body>
</html>