<!DOCTYPE html> <html> <head> <title>Password Reset Complete</title> <style> body { font-family: Arial, sans-serif; background-color: #f5f5f5; margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; min-height: 100vh; } .container { text-align: center; background-color: #ffffff; padding: 20px; border-radius: 5px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); } h1 { color: #007bff; margin-bottom: 10px; } p { font-size: 18px; color: #333; } </style> </head> <body> <div class="container"> <h1>Password Reset Complete</h1> <p>Your password has been successfully Changed. You can now log in with your new password.</p> <p style="text-align: center;"> <a href="{% url 'login' %}" style="background-color: #007bff; color: #ffffff; padding: 10px 20px; text-decoration: none; border-radius: 5px; display: inline-block;">Log In</a> </p> </div> </body> </html>