[Django]-Why does safari say my website is insecure when a user is entering a password – Django

5πŸ‘

βœ…

It appears that you are not using HTTPS.

When you serve your website over HTTP, the data is sent in plain text over the internet.

This means that, when the user submits the password to your website, it could be read in transit. This is not secure.

You are now able to get free certificates for your website using https://letsencrypt.org/.

πŸ‘€meshy

0πŸ‘

Perhaps your certificate is self-signed? Maybe you then need to specify in the settings to allow certificates from localhost.

πŸ‘€Stefan

Leave a comment