Add user login, registration, account management and more, to your website or app, all in under 10 minutes. (Please note, UserKit is still experimental).
Get StartedUserKit handles your user's account life-cycle for you,
With all that taken care of, you can focus on building your product.
<script src="https://widget.userkit.io/widget.js" data-app-id="YOUR-APP-ID"></script>
uk = userkit.UserKit("<YOUR_APP_SECRET_KEY>") # session tokens are stored in a cookie set by the widget session_token = request.cookies.get("userkit_auth_token") user = uk.users.get_current_user(session_token) if user: print("Welcome, you're logged in as " + user.name) else: print("Please log in")