1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
Views
=====
Login (``account_login``)
-------------------------
Users login via the ``allauth.account.views.LoginView`` view over at
``/accounts/login/`` (URL name ``account_login``). When users attempt to login
while their account is inactive (``user.is_active``) they are presented with the
``account/account_inactive.html`` template.
Signup (``account_signup``)
---------------------------
Users sign up via the ``allauth.account.views.SignupView`` view over at
``/accounts/signup/`` (URL name ``account_signup``).
Logout (``account_logout``)
----------------------------
The logout view (``allauth.account.views.LogoutView``) over at
``/accounts/logout/`` (URL name ``account_logout``) requests for confirmation
before logging out. The user is logged out only when the confirmation is
received by means of a POST request.
If you are wondering why, consider what happens when a malicious user
embeds the following image in a post::
<img src="http://example.com/accounts/logout/">
For this and more background information on the subject, see:
- https://code.djangoproject.com/ticket/15619
- http://stackoverflow.com/questions/3521290/logout-get-or-post
If you insist on having logout on GET, then please consider adding a
bit of Javascript to automatically turn a click on a logout link into
a POST. As a last resort, you can set ``ACCOUNT_LOGOUT_ON_GET`` to
``True``.
Password Management
-------------------
Authenticated users can manage their password account using the
``allauth.account.views.PasswordSetView`` and
``allauth.account.views.PasswordChangeView`` views, over at
``/accounts/password/set/`` respectively ``/accounts/password/change/`` (URL names
``account_set_password`` and ``account_change_password`` respectively).
Users are redirected between these views, according to whether or not
they have setup a password (``user.has_usable_password()``). Typically,
when users signup via a social provider they will not have a password
set.
Password Reset (``account_reset_password``)
-------------------------------------------
Users can request a password reset using the
``allauth.account.views.PasswordResetView`` view over at
``/accounts/password/reset/`` (URL name ``account_reset_password``). An e-mail
will be sent containing a reset link pointing to ``PasswordResetFromKeyView``
view.
E-mails Management (``account_email``)
--------------------------------------
Users manage the e-mail addresses tied to their account using the
``allauth.account.views.EmailView`` view over at ``/accounts/email/`` (URL name
``account_email``). Here, users can add (and verify) e-mail addresses, remove
e-mail addresses, and choose a new primary e-mail address.
E-mail Verification
-------------------
Depending on the setting ``ACCOUNT_EMAIL_VERIFICATION``, a verification
e-mail is sent pointing to the
``allauth.account.views.ConfirmEmailView`` view.
The setting ``ACCOUNT_CONFIRM_EMAIL_ON_GET`` determines whether users
have to manually confirm the address by submiting a confirmation form,
or whether the address is automatically confirmed by a mere GET
request.
Social Connections (``socialaccount_connections``)
--------------------------------------------------
The ``allauth.socialaccount.views.ConnectionsView`` view over at
``/accounts/social/connections/`` (URL name ``socialaccount_connections``) allows
users to manage the social accounts tied to their local account.
|