-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword_change_successful.html
More file actions
294 lines (243 loc) · 12.2 KB
/
password_change_successful.html
File metadata and controls
294 lines (243 loc) · 12.2 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- tailwindcss -->
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<!-- favicon -->
<link rel="icon" type="image/x-icon" href="images/logo.png">
<!-- fontawesome -->
<script src="https://kit.fontawesome.com/25d8830708.js" crossorigin="anonymous"></script>
<!-- swiper js -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<style type="text/tailwindcss">
@theme {
--color-primary: #090D47;
--color-secondary: #FF6B6B;
--color-gray: #EDF1F3;
}
</style>
<title>BATC</title>
</head>
<body>
<!-- navigation bar -->
<header class="bg-primary text-white ">
<div class="max-w-7xl mx-auto flex items-center justify-between px-6 py-4">
<!-- Left: Toggle + Logo -->
<div class="flex items-center space-x-3">
<!-- Mobile toggle -->
<button id="menuToggle" class="lg:hidden focus:outline-none">
<!-- Hamburger Icon -->
<svg xmlns="http://www.w3.org/2000/svg" class="h-7 w-7 text-white" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
<!-- Logo -->
<img src="images/logo.png" alt="Logo" class="h-16 w-auto object-contain" />
</div>
<!-- Navigation (desktop) -->
<nav class="hidden lg:flex space-x-6 items-center">
<a href="index.html" class=" hover:text-secondary transition-colors duration-300">Home</a>
<a href="members.html" class="hover:text-secondary transition-colors duration-300">Members</a>
<a href="be_a_member.html" class="hover:text-secondary transition-colors duration-300">Be a Member</a>
<a href="events.html" class="hover:text-secondary transition-colors duration-300">Events</a>
<a href="gallery.html" class="hover:text-secondary transition-colors duration-300">Gallery</a>
<a href="about_us.html" class="hover:text-secondary transition-colors duration-300">About Us</a>
<a href="contact_us.html" class="hover:text-secondary transition-colors duration-300">Contact Us</a>
<a href="Dashboard/index.html" class="hover:text-secondary transition-colors duration-300">DB</a>
<!-- Login Button -->
<a href="login.html">
<button
class="ml-6 bg-white cursor-pointer hover:bg-secondary hover:text-white transition-colors duration-300 text-black font-medium px-5 py-2 rounded-lg hover:bg-gray-100">
Login
</button>
</a>
</nav>
</div>
<!-- Mobile Menu -->
<div id="mobileMenu" class="fixed inset-0 backdrop-blur-[3px] bg-opacity-50 hidden z-50">
<div class="bg-primary w-64 h-full shadow-lg relative p-6">
<!-- Close Button -->
<button id="menuClose" class="absolute top-4 right-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
<!-- Navigation Links -->
<nav class="flex flex-col space-y-4">
<a href="index.html" class="text-red-500 font-medium">Home</a>
<a href="members.html" class="hover:text-red-400">Members</a>
<a href="be_a_member.html" class="hover:text-red-400">Be a Member</a>
<a href="events.html" class="hover:text-red-400">Events</a>
<a href="gallery.html" class="hover:text-red-400">Gallery</a>
<a href="about_us.html" class="hover:text-red-400">About Us</a>
<a href="contact_us.html" class="hover:text-red-400">Contact Us</a>
<a href="Dashboard/index.html" class="hover:text-red-400">DB</a>
</nav>
<!-- Login Button -->
<a href="login.html">
<button
class="mt-6 bg-white text-primary font-medium px-5 py-2 rounded-lg hover:bg-blue-900 w-full">
Login
</button>
</a>
</div>
</div>
</header>
<section class="min-h-screen flex items-center justify-center bg-cover bg-center relative px-4 sm:px-6 lg:px-8"
style="background-image: url('images/change_pass.jpg');">
<!-- Overlay -->
<div class="absolute inset-0 bg-black/50"></div>
<div
class="relative z-10 w-full max-w-sm sm:max-w-md md:max-w-lg lg:max-w-lg xl:max-w-xl bg-white rounded-xl shadow-lg p-5 sm:p-8 md:p-10 text-center">
<img class="w-4/12 sm:w-3/12 mx-auto mb-8 sm:mb-10" src="images/success.png" alt="">
<h1 class="text-2xl sm:text-3xl font-semibold mb-6 sm:mb-8">Password Change Successful!</h1>
<p class="text-base sm:text-lg mb-2 sm:mb-2 px-2 sm:px-6 md:px-10">
You have been successfully change your password with <span class="font-semibold">BATC</span>
</p>
<p class="text-base sm:text-lg mb-8 sm:mb-10 px-2 sm:px-6 md:px-10">
You can now login to your account.
</p>
<a href="forgot_check.html">
<button
class="w-full sm:w-7/12 bg-primary cursor-pointer my-5 text-white py-3 rounded-lg font-semibold hover:bg-secondary transition duration-300">
Dashboard
</button>
</a>
</div>
</section>
<!-- footer -->
<footer class="bg-primary text-white py-10">
<div class="max-w-7xl mx-auto px-6 grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Left Side -->
<div>
<!-- Logo -->
<img src="images/logo.png" alt="BATC Logo" class="h-14 mb-4">
<!-- Description -->
<p class="text-gray-300 mb-6">
Connecting Innovation, Culture, and Community – Uniting Bangladeshi-American tech professionals to
foster creativity, celebrate our heritage, and build meaningful connections that drive personal and
professional growth.
</p>
</div>
<!-- Right Side -->
<div class="flex flex-col md:items-end">
<h3 class="font-bold mb-3">Social Media</h3>
<div class="flex gap-3">
<a href="#" class="border w-8 h-8 flex items-center justify-center rounded"><i
class="fab fa-facebook-f"></i></a>
<a href="#" class="border w-8 h-8 flex items-center justify-center rounded"><i
class="fab fa-linkedin-in"></i></a>
<a href="#" class="border w-8 h-8 flex items-center justify-center rounded"><i
class="fab fa-youtube"></i></a>
<a href="#" class="border w-8 h-8 flex items-center justify-center rounded"><i
class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</div>
<!-- Contact Info -->
<div
class="max-w-7xl px-6 mx-auto mt-8 flex flex-col md:items-center gap-4 text-gray-300 sm:flex-row sm:justify-around">
<div class="flex items-center gap-2">
<span class="text-lg"><i class="fa-solid fa-phone-volume"></i></span>
<span>929-301-6028</span>
</div>
<div class="flex items-center gap-2">
<span class="text-lg"><i class="fa-solid fa-envelope"></i></span>
<span>info@batc.com</span>
</div>
<div class="flex items-center gap-2">
<span class="text-xs md:text-lg "><i class="fa-solid fa-location-dot"></i></span>
<span>625W 57th St, New York, NY 10019</span>
</div>
</div>
<!-- Bottom Line -->
<div class="border-t border-gray-600 mt-8 pt-4 text-center text-gray-400 text-xs md:text-sm">
© 2025 BATC. All Rights Reserved. Designed & Developed by <span class="font-bold">Wyth Myth</span>
</div>
</footer>
<script>
// for navigation menu on mobile
const menuToggle = document.getElementById("menuToggle");
const mobileMenu = document.getElementById("mobileMenu");
const menuClose = document.getElementById("menuClose");
// Open menu
menuToggle.addEventListener("click", () => {
mobileMenu.classList.remove("hidden");
});
// Close menu
menuClose.addEventListener("click", () => {
mobileMenu.classList.add("hidden");
});
// Click outside to close
mobileMenu.addEventListener("click", (e) => {
if (e.target === mobileMenu) {
mobileMenu.classList.add("hidden");
}
});
// eta navigation theke je page e jabe seta bold hoye jabe tar jonno
document.addEventListener("DOMContentLoaded", function () {
const links = document.querySelectorAll("nav a");
const current = window.location.pathname.split("/").pop(); // page name
links.forEach(link => {
if (link.getAttribute("href") === current) {
link.classList.add("font-bold", "text-primary");
}
});
});
// eta navigation theke je page e jabe seta bold hoye jabe tar jonno
document.addEventListener("DOMContentLoaded", function () {
const links = document.querySelectorAll("nav a");
const current = window.location.pathname.split("/").pop(); // page name
links.forEach(link => {
if (link.getAttribute("href") === current) {
link.classList.add("font-bold", "text-primary");
}
});
});
// handle the multiple swiper js
// Dynamic swiper configuration
document.querySelectorAll('.mySwiper').forEach((swiperEl) => {
const breakpoints = swiperEl.dataset.breakpoints
? JSON.parse(swiperEl.dataset.breakpoints)
: {};
new Swiper(swiperEl, {
loop: true,
spaceBetween: 20,
breakpoints: breakpoints,
pagination: {
el: swiperEl.querySelector('.swiper-pagination'),
clickable: true
},
navigation: {
nextEl: swiperEl.querySelector('.swiper-button-next-custom'),
prevEl: swiperEl.querySelector('.swiper-button-prev-custom')
}
});
});
// password show and hide
document.addEventListener('click', function (e) {
if (e.target.matches('[data-toggle="password"]')) {
const targetId = e.target.getAttribute('data-target');
const passField = document.getElementById(targetId);
if (passField.type === 'password') {
passField.type = 'text';
e.target.classList.remove('fa-eye-slash');
e.target.classList.add('fa-eye');
} else {
passField.type = 'password';
e.target.classList.remove('fa-eye');
e.target.classList.add('fa-eye-slash');
}
}
});
</script>
</body>
</html>