mp/Sean/views/success.ejs

16 lines
544 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Reset Success</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<div class="container mt-5">
<div class="alert alert-success mb-3">Password changed successfully.</div>
<p>Thank you for updating your password. You can now <a href="/login">log in</a> with your new password.</p>
</div>
</body>
</html>