diff --git a/docs/topics/auth.txt b/docs/topics/auth.txt
index beaf281..bd0c3b4 100644
a
|
b
|
password resets. You must then provide some key implementation details:
|
1895 | 1895 | |
1896 | 1896 | .. attribute:: User.REQUIRED_FIELDS |
1897 | 1897 | |
1898 | | A list of the field names that *must* be provided when creating |
1899 | | a user. For example, here is the partial definition for a User model |
1900 | | that defines two required fields - a date of birth and height:: |
| 1898 | A list of the field names that *must* be provided when creating a user. |
| 1899 | These will specifically be prompted for when creating a user |
| 1900 | interactively. It should include any field for which ``Blank`` is False |
| 1901 | or undefined, but may include additional fields you want prompted for |
| 1902 | when a user is created interactively. For example, here is the partial |
| 1903 | definition for a User model that defines two required fields - a date |
| 1904 | of birth and height:: |
1901 | 1905 | |
1902 | 1906 | class MyUser(AbstractBaseUser): |
1903 | 1907 | ... |