-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrantMoney_layout.php
139 lines (124 loc) · 4.33 KB
/
grantMoney_layout.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<title>Financial Grant Management System</title>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/js/materialize.min.js"></script>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<!--<link rel="stylesheet" href="final.css" type="text/css"> -->
<style>
div.transbox{
margin:auto;
width:400px;
align:center;
padding:3%;
border-style: solid;
border-color: #000000;
height:280px;
background-color: #ffffff;
text-color:#4db6ac;
}
div.transbox h5 {
margin-left: 7.5%;
margin-top:-2%;
font-weight: bold;
color: #009688 ;
}
ul {
list-style-type: none;
margin:auto;
margin-left:0px;
padding: 0;
margin:5%;
overflow: hidden;
background-color: #009688;
color:#ffcdd2;
}
li {
float: left;
width:16.66%;
}
li a {
display: block;
color: white;
text-align: center;
padding: 16px;
text-decoration: none;
font-family: GillSans, Calibri, Trebuchet, sans-serif;
font-size:16px;
margin-top:-1.4%;
margin-left:-0.82%;
}
li a:hover {
background-color:#00E5EE;
font-weight: bold;
color:gray;
}
</style>
</head>
<img src="logo.png" style="width:69.84px;height:75.76px;margin-top:0.6%;margin-left:0.6%;" ><h1 style="color:black; font-family:Comic Sans MS, cursive, sans-serif; font-size:30px; font-weight: bold; margin-top:-4.75%; margin-left:1.2%;" align ="center">Indian Institute Of Technology,Jodhpur</h1>
<body style=" width:100%; height:100%;">
<div class="row">
<div class="col s12">
<ul style=" ;margin-top:1.5%; height:51px;width:90.6%;margin-left:4.8%;">
<li class="tab col s2"><a style="color:white;" target="_self" href="profile_admin.php">HOME</a></li>
<li class="tab col s2"><a style="color:white;" target="_self" href="viewPendingAdmin.php">PENDING GRANTS</a></li>
<li class="tab col s2"><a style="color:white;" target="_self" href="viewGrantsAdmin.php">VIEW OLD GRANTS</a></li>
<li class="tab col s2"><a style="color:white;" target="_self" href="removeApplicant_layout.php">REMOVE APPLICANT</a></li>
<li class="tab col s2"><a style="color:white;" target="_self" href="grantMoney_layout.php">GRANT MONEY</a></li>
<li class="tab col s2"><a style="color:white;" target="_self" href="logout.php">LOG OUT</a></li>
</ul>
</div>
</div>
<?php
function __autoload($class_name) {
require_once('Database.php');
require_once('User.php');
}
$message="";
session_start();
if(isset($_SESSION['login'])==true){
if($_SESSION["obj"]->getUserName()=="admin"){
echo
"
<form action='grantMoney.php' method='POST'>
<div class='row'>
<div class='col l4 s12 m4'></div>
<div class='transbox'>
<div class='input-field col s6' style='width:100%; padding-bottom:15%'>
<input class='validate' type='text' name='grantId' required>
<label >Grant Id : </label>
</div>
<br>
<h6 style='color:red; width:100%;text-align:center;'>";
if(isset($_SESSION['result'])){
if($_SESSION['result'][0]=='G'){
echo '<div style="color:red; text-align:center">'.$_SESSION['result'].'</div>';
}
else{
echo '<div style="color:green; text-align:center">'.$_SESSION['result'].'</div>';
}
unset($_SESSION['result']);
}
echo "</h6>
<button style='width:40%;margin:0 auto; display:block;' class='btn waves-effect waves-light' type='submit' name='SubmitButton'' value='Submit'>Check
<i class='material-icons right'>send</i>
</button>
</div>
</div>
</div>
</form>";
}
else{
header("Location:profile.php");
}
}
else{
header("Location:login.php");
}
?>