forked from CodeZohaib/LawyerCaseManagement
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgotPassword.php
More file actions
100 lines (83 loc) · 4.09 KB
/
forgotPassword.php
File metadata and controls
100 lines (83 loc) · 4.09 KB
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
<?php
include "include/function.php";
if(isset($_SESSION['loginUser']) AND !empty($_SESSION['loginUser'][0]) AND !empty($_SESSION['loginUser'][1]))
{
header('location:index2.php');
}
?>
<!DOCTYPE html>
<html lang="en" itemscope itemtype="http://schema.org/WebPage">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" sizes="76x76" href="../assets/img/apple-icon.png">
<link rel="icon" type="image/png" href="../assets/img/favicon.png">
<title>
Login
</title>
<!-- Fonts and icons -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Roboto+Slab:400,700" />
<!-- Nucleo Icons -->
<link href="files/assets/css/nucleo-icons.css" rel="stylesheet" />
<link href="files/assets/css/nucleo-svg.css" rel="stylesheet" />
<!-- Font Awesome Icons -->
<script src="https://kit.fontawesome.com/42d5adcbca.js" crossorigin="anonymous"></script>
<!-- Material Icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Round" rel="stylesheet">
<!-- CSS Files -->
<link id="pagestyle" href="files/assets/css/material-kit.css?v=3.0.4" rel="stylesheet" />
</head>
<body class="sign-in-basic">
<!-- Navbar Transparent -->
<!-- End Navbar -->
<div class="page-header align-items-start min-vh-100" style="background-image: url('files/pexels-ekaterina-bolovtsova-6077326.jpg');" loading="lazy">
<span class="mask bg-gradient-dark opacity-6"></span>
<div class="container my-auto">
<div class="row">
<div class="col-lg-5 col-md-8 col-12 mx-auto">
<div class="card z-index-0 fadeIn3 fadeInBottom">
<div class="card-header p-0 position-relative mt-n4 mx-3 z-index-2">
<div class="bg-gradient-success shadow-success border-radius-lg py-3 pe-1">
<h4 class="text-white font-weight-bolder text-center mt-2 mb-0">Recovery Password</h4>
<div class="row mt-3">
<div class="col-2 text-center ms-auto">
</div>
<div class="col-2 text-center px-1">
</div>
<div class="col-2 text-center me-auto">
</div>
</div>
</div>
</div>
<div class="card-body mt-4">
<form action="include/request.php" method="post" class="text-start form" enctype="multipart/form-data">
<div class="input-group input-group-outline my-3">
<input type="email" name="forgot_password" class="form-control" placeholder="Enter Email Address" required>
</div>
<div class="msgShow"></div>
<div class="text-center">
<input type="submit" name="done" class="btn bg-gradient-success w-100 my-4 mb-2" value="Submit">
</div>
<p class="mt-4 text-sm text-center">
</p>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Core JS Files -->
<script src="files/node_modules/jquery/jquery.min.js"></script>
<script src="files/assets/js/core/popper.min.js" type="text/javascript"></script>
<script src="files/assets/js/core/bootstrap.min.js" type="text/javascript"></script>
<script src="/files/assets/js/plugins/perfect-scrollbar.min.js"></script>
<!-- Plugin for Parallax, full documentation here: https://github.com/wagerfield/parallax -->
<script src="files/assets/js/plugins/parallax.min.js"></script>
<!-- Control Center for Material UI Kit: parallax effects, scripts for the example pages etc -->
<!-- Google Maps Plugin -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDTTfWur0PDbZWPr7Pmq8K3jiDp0_xUziI"></script>
<script src="assets/js/material-kit.min.js?v=3.0.4" type="text/javascript"></script>
<script src="files/js/mycustom.js"></script>
</body>
</html>