-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset-password.html
91 lines (81 loc) · 3.8 KB
/
reset-password.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cormac Farrelly - Reset Password</title>
<meta name="description" content="Reset your password to access your account.">
<meta name="keywords" content="password reset, account security">
<meta name="author" content="Cormac Farrelly">
<meta name="robots" content="index, follow">
<!-- Stylesheets and scripts -->
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="img/NFT.ico" type="image/x-icon">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<!-- Header and navigation -->
<header>
<nav class="navbar navbar-fixed-top navbar-inverse">
<div class="container">
<!-- Navbar toggle button -->
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#navbar-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Navbar content -->
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/" title="">01: Home</a></li>
<li><a href="/resume" title="">02: Resume</a></li>
<li><a href="/blog" title="">03: Blog</a></li>
<li><a href="/github" title="">04: GitHub</a></li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Main content container -->
<div class="section-container">
<div class="container">
<div class="row resume-row-label">
<div class="col-xs-12">
<div class="template-example">
<h1 class="template-title-example">Reset Password</h1>
<p class="category-description">Enter your new password.</p>
<!-- Reset Password Form -->
<div class="reset-password-container">
<form id="resetPasswordForm">
<label for="newPassword">New Password:</label>
<input type="password" id="newPassword" name="newPassword" required>
<label for="confirmPassword">Confirm Password:</label>
<input type="password" id="confirmPassword" name="confirmPassword" required>
<button type="submit">Reset Password</button>
<p id="resetMessage"></p>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="footer-container">
<div class="container">
<div class="row">
<div class="col-xs-12 text-center">
<p>Inspired by free time</p>
<p>This project was developed with the help of AI tools, using them as a guide, assistant, and for significant code generation. All final creative decisions and deployments reflect my own work and intentions.</p>
<p>© Cormac Farrelly 2024</p>
</div>
</div>
</div>
</div>
<!-- JavaScript Section -->
<script src="/reset-password.js"></script>
</body>
</html>