| Linux server27.hostingraja.org 2.6.32-954.3.5.lve1.4.93.el6.x86_64 #1 SMP Wed Oct 4 17:04:29 UTC 2023 x86_64 Path : /home/udaipurk/public_html/websites/samaj/samaj/admin/ |
| Current File : /home/udaipurk/public_html/websites/samaj/samaj/admin/password.php |
<?php
include('../config.php');
if(isset($_POST['submit']))
{
$npas=$_POST['npas'];
session_start();
$query="update admin_login set Password='$npas' where a_id='".$_SESSION['samaj_admin']."'";
$result=mysqli_query($link,$query);
if($result)
header('location:home.php?err=1');
else
header('location:password.php?err=Passwords are not matched');
}
include('header.php');
?>
<div class="loginBox" style="margin-top:10%">
<div class="loginHead">
<p style="color:#ffffff; font-size:14px">Change Password</p>
</div>
<form class="form-horizontal" action="password.php" method="POST">
<div class="control-group">
<label for="inputPassword">New Password</label>
<input type="password" name="npas" id="inputPassword"/>
</div>
<div class="form-actions">
<button type="submit" value="s" name='submit' class="btn btn-block">Update</button>
</div>
</form>
<?php
if(isset($_GET['err']))
{
$error=$_GET['err'];
echo "<br>";
echo " $error";
}
?>
</div>
<?php include('footer.php');?>