-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpassword_page.php
76 lines (63 loc) · 2.73 KB
/
password_page.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
<?php
session_start();
// Check if the user is logged in
if (!isset($_SESSION['user_id'])) {
// Redirect to the login page or display a message
$error = "পাতাটি দেখতে আগে সাইনইন করুন।";
header("Location: signin_page.php?error=" . urlencode($error));
exit();
}
?>
<!-- Header -->
<?php
include_once('header.php');
include_once('message.php');
?>
<!-- contact start-->
<section class="custom-form-section" id="signin">
<div class="container">
<!-- 1st row-->
<div class="row justify-content-center">
<div class="col-lg-9">
<div class="c_title text-center">
<h1 class="c_h1 yellow form-title">পাসওয়ার্ড পরিবর্তন</h1>
<p class="c_p ash">আপনার তথ্য দিন</p>
</div>
</div>
</div>
<!-- 2nd row-->
<div class="row justify-content-center">
<div class="col-lg-10">
<div class="c_form">
<form method="POST" action="password.php" enctype="multipart/form-data">
<div class="row g-3 justify-content-center">
<div class="col-lg-8 col-md-8">
<input type="password" class="form-control c_email"
placeholder="আপনার বর্তমান পাসওয়ার্ড লিখুন" name="old-password" required>
</div>
<div class="col-lg-8 col-md-8">
<input type="password" class="form-control c_email" placeholder="নতুন পাসওয়ার্ড লিখুন"
name="new-password" required>
</div>
<div class="col-lg-8 col-md-8">
<input type="password" class="form-control c_email"
placeholder="পাসওয়ার্ডটি পুনরায় লিখুন" name="confirm-password" required>
</div>
</div>
<div class="col-lg-4 col-md-4 container-fluid">
<button type="submit" class="btn c_button" style="margin-top: 5rem; width: 100%;">পরিবর্তন
এবং সাইনআউট</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- contact end-->
<?php
// Include the footer file
include_once('footer.php');
?>
</body>
</html>