<!DOCTYPE html> <html> <head> <title>Password Reset Request</title> </head> <body> <h1>Password Reset Request</h1> <p>Hello {{ user.username }},</p> <p>We received a password reset request for your account. Please choose one of the following options to reset your password:</p> <p style="text-align: center;"> <a href="http://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}" style="text-decoration: none;"> <button style="background-color: #007bff; color: #ffffff; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer;"> Reset Password </button> </a> </p> <p>Alternatively, you can click on the link below:</p> <p style="text-align: center;"> {{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %} </p> <p>If you didn't request a password reset, please ignore this email.</p> </body> </html>