-
Notifications
You must be signed in to change notification settings - Fork 2
/
admin_forgot_password2.php
64 lines (57 loc) · 1.79 KB
/
admin_forgot_password2.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
<?php
if(empty($_SESSION)) //if the session not yet started
{
session_start();
if(!isset($_SESSION['admin_aadhar']))
header("location:adminlogin.php");
}
else if(!isset($_SESSION['admin_aadhar']))
{
header("location:adminlogin.php");
exit;
}
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>AGRO KRISHI</title>
<link href="css/bootstrap.css" rel="stylesheet" />
<link href="css/font-awesome.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' />
</head>
<body >
<?php
include('includes/header.php');?>
<div class="container">
<h4 class="header-line"><h3>Admin's Password Recovery</h3></h4>
</div>
<div class="form-area">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-12 col-md-offset-3" >
<h3 align="center">Forgot Password</h3>
</div>
<div class="panel-body">
<form role="form" method="post" action='admin_forgot_password2_backend.php'>
<div class="form-group">
<label><p>Password</p></label>
<input class="form-control" type="password" name="password" />
</div>
<div class="form-group">
<label><p>Confirm Password</p> </label>
<input class="form-control" type="password" name="confirmpassword" autocomplete="off" required />
</div>
<button type="submit" name="change" class="btn btn-info">Submit</button><a href="adminlogin.php">Login</a>
</form>
</div>
</div>
</div>
<br>
<br>
<script src="assets/js/jquery-1.10.2.js"></script>
<script src="assets/js/bootstrap.js"></script>
<script src="assets/js/custom.js"></script>
</body>
</html>