-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset-password.php
More file actions
53 lines (41 loc) · 1.91 KB
/
reset-password.php
File metadata and controls
53 lines (41 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Reset Password - SmartResume</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/nav.css">
</head>
<body style="background-color: #ffffff;">
<!-- Navbar -->
<?php include "./assets/pages/_header.php" ?>
<!-- Reset Password Section -->
<section class="d-flex align-items-center justify-content-center" style="min-height: 70vh;">
<div class="card shadow p-4"
style="width: 100%; max-width: 400px; border-radius: 1rem; background-color: #e3f2fd;">
<h2 class="text-center mb-4 fw-bold">Reset Password</h2>
<form>
<!-- New Password -->
<div class="mb-3">
<label for="newPassword" class="form-label fw-semibold">New Password</label>
<input type="password" class="form-control" id="newPassword" placeholder="Enter new password"
required>
</div>
<!-- Confirm Password -->
<div class="mb-3">
<label for="confirmPassword" class="form-label fw-semibold">Confirm Password</label>
<input type="password" class="form-control" id="confirmPassword" placeholder="Confirm your password"
required>
</div>
<!-- Submit Button -->
<div class="d-grid mt-4">
<button type="submit" class="btn btn-dark">Update Password</button>
</div>
</form>
</div>
</section>
<?php include "./assets/pages/_footer.php" ?>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>