| Server IP : 50.63.8.194 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT P3NWVPWEB026 10.0 build 17763 (Windows Server 2016) AMD64 User : IWPD_7824(SpiPanel) ( 0) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : G:/PleskVhosts/polyprep.in/mmitshamli.ac.in/mmit_shamli/home/ |
Upload File : |
<?php
$title = "Grievance";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include('../home_include/header_link.php');
?>
</head>
<body>
<div class="page-wrapper" id="page-wrapper">
<?php
include('../home_include/header.php');
?>
<!-- page content start -->
<!-- start inner banner -->
<section class="inner-banner">
<h1 class="font-weight-bold text-center">Grievance</h1>
</section>
<!-- end inner banner -->
<div class="content-wrap">
<div class="container mt-5">
<div class="row d-flex justify-content-center align-items-center">
<div class="col-sm-12 col-md-12 col-lg-12 ">
<p>
Institute has its own GRIEVANCE REDRESSAL committee to resolve student’s problems. Student can contact through email or phone numbers to the institute head directly.
</p>
<h2 class="section-heading text-center" style="color:orange">
Grievance Form
</h2>
<form action="grievance_code.php" method="post">
<table class="table table-borderless w-75 text-dark mb-5" align="center" cellspacing="4">
<tr>
<th>Student Name : </th>
<td><input type="text" class="form-control" name="name" required="" /></td>
</tr>
<tr>
<th>Enrollment Number : </th>
<td><input type="text" class="form-control" name="enroll" required="" /></td>
</tr>
<tr>
<th>Mobile No : </th>
<td><input type="text" class="form-control" maxlength="10" minlength="10" name="mob" required="" /></td>
</tr>
<tr>
<th>Email : </th>
<td><input type="text" class="form-control" name="email" required="" /></td>
</tr>
<tr>
<th>Subject : </th>
<td><input type="text" class="form-control" name="subject" required="" /></td>
</tr>
<tr>
<th>Message/Query : </th>
<td><textarea class="form-control" name="message" required=""></textarea></td>
</tr>
<tr>
<td colspan="2"><input type="submit" class="btn btn-primary mt-3 w-100" /></td>
</tr>
</table>
</form>
</div>
</div>
</div>
</div>
<?php
if(isset($_REQUEST['msg'])){
if($_REQUEST['msg']==1){
echo "<script>window.alert('Message sent successfully')</script>";
}else{
echo "<script>window.alert('Sorry, something went wrong!')</script>";
}
}
?>
<!-- page content end -->
<?php
include('../home_include/footer.php');
?>
</div>
<?php
include('../home_include/footer_link.php');
?>
</body>
</html>