Create users from the interface — Is it possible?

Hello,

I’ve installed Taiga using Docker and created my superuser account without any issues. However, I can’t find the section in the interface that allows me to create new users.

Is it possible to create users directly from the web interface, or is it only possible via command line?

Thanks in advance for your help!

Add /admin to the end of you current ip and port
E.g.
192.168.1.100:9000/admin

Hello,

Thanks for your reply.

I was able to access /admin, but it redirects me to the Django administration panel. However, when I try to log in with the superuser I created, I get the following error:

Forbidden (403)
CSRF verification failed. Request aborted.
[…] This site requires a CSRF cookie when submitting forms. This cookie is needed for security purposes to ensure that the browser has not been hijacked.

Do you have any idea what might be causing this?
Thanks in advance!

SESSION_COOKIE_SECURE: "False"
CSRF_COOKIE_SECURE: "False"

you should apply these in docker-compose.yml
Taiga 30min Setup - Session cookies in Django Admin

1 Like