# tenant/utils/common.py import getpass def get_secure_password(prompt="Enter password: "): # Use getpass to securely input a password without displaying it return getpass.getpass(prompt=prompt)