Authentication
POST
{% if has_social_auth and social_providers %}
/api/auth/login/
OR
{% endif %}
POST
{% endif %}
/api/auth/logout/
Registration
POST
/api/auth/registration/
User Profile
GET
/api/auth/user/
PUT
/api/auth/user/
Password Management
{% if is_authenticated %}
{% else %}
{% endif %}
{% if not is_authenticated %}
{% endif %}
{% if is_authenticated %}
POST
/api/auth/password/change/
POST
/api/auth/password/reset/
POST
/api/auth/password/reset/confirm/
Social Connections
Connected Accounts
{% for connection in social_connections %} {% endfor %}Connect More
{% endif %}