 
            
            
            
            
                
                    Oct. 22, 2025
                
            
            
            
        
    
                2:34 p.m.
            
        This issue present in both the environments I've set up. Devtools doesn't seem to complain about missing CSS, rather the html file doesn't contain any <link rel="stylesheet"> tags at all.
Strange this is only the case for 2 pages: ../accounts/password/reset/done/ and ../accounts/confirm-email/
What do yours look like?
#--------------------------- <!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Password Reset</title> </head> <body> <nav> <strong>Menu:</strong> <ul> <li><a href="/accounts/login/">Sign In</a></li> <li><a href="/accounts/signup/">Sign Up</a></li> </ul> </nav>
<main>
    <h1>Password Reset</h1>
    <p>
        We have sent you an email. If you have not received it, please check your spam folder.
        Otherwise, contact us if you do not receive it in a few minutes.
    </p>
</main></body> </html> #---------------------------