<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Account Activation</title> </head> <body style="font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; padding: 0;"> <div style="max-width: 600px; margin: 0 auto; padding: 20px;"> <div style="background-color: #ffffff; padding: 20px; border-radius: 5px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> <p style="font-size: 18px; margin-bottom: 20px;">Hello {{ user.username }},</p> <p style="font-size: 16px; margin-bottom: 20px;">Thank you for registering on our website. To activate your account, please click on the link below:</p> <p style="margin-bottom: 30px;"><a style="display: inline-block; padding: 10px 20px; background-color: #007bff; color: #ffffff; text-decoration: none; border-radius: 5px;" href="http://{{ domain }}{% url 'activate_user' uidb64=uid token=token %}">Activate Account</a></p> <p style="font-size: 16px; margin-bottom: 20px;">If you did not request this activation, please ignore this email.</p> <p style="font-size: 14px;">Best regards,<br>Your Website Team</p> </div> </div> </body> </html>