diff --git a/docs/topics/auth/index.txt b/docs/topics/auth/index.txt
index ddb2d2f..619afba 100644
a
|
b
|
The auth system consists of:
|
37 | 37 | * Forms and view tools for logging in users, or restricting content |
38 | 38 | * A pluggable backend system |
39 | 39 | |
| 40 | The authentication system in Django aims to be very generic and doesn't provide |
| 41 | some features commonly found in web authentication systems. Solutions for some |
| 42 | of these common problems have been implmented in third-party packages: |
| 43 | |
| 44 | * Password strength checking |
| 45 | * Throttling of login attempts |
| 46 | * Authentication against third-parties (OAuth, for example) |
| 47 | |
40 | 48 | Installation |
41 | 49 | ============ |
42 | 50 | |