diff --git a/docs/features.rst b/docs/features.rst index 5bdca83..e870ba2 100644 --- a/docs/features.rst +++ b/docs/features.rst @@ -5,8 +5,6 @@ Flask-Security allows you to quickly add common security mechanisms to your Flask application. They include: -.. session-based-auth: - Session Based Authentication ---------------------------- @@ -17,8 +15,6 @@ based on a few of its own configuration values and uses Flask-Login's expired. -.. role-management: - Role/Identity Based Access -------------------------- @@ -31,8 +27,6 @@ and all roles should be uniquely named. This feature is implemented using the control you can refer to the Flask-Princpal `documentation on this topic`_. -.. password-encryption: - Password Encryption ------------------- @@ -43,8 +37,6 @@ You may also specify to use HMAC with a configured salt value in addition to the algorithm chosen. Bear in mind passlib does not assume which algorithm you will choose and may require additional libraries to be installed. -.. basic-http-auth: - Basic HTTP Authentication ------------------------- @@ -53,8 +45,6 @@ This feature expects the incoming authentication information to identify a user in the system. This means that the username must be equal to their email address. -.. token-authentication: - Token Authentication -------------------- @@ -71,8 +61,6 @@ will become invalid. A new token will need to be retrieved using the user's new password. -.. email-confirmation: - Email Confirmation ------------------ @@ -84,7 +72,6 @@ if the user happens to try to use an expired token or has lost the previous email. Confirmation links can be configured to expire after a specified amount of time. -.. password-recovery: Password Reset/Recovery ----------------------- @@ -96,8 +83,6 @@ logged in and can use the new password from then on. Password reset links can be configured to expire after a specified amount of time. -.. user-registration: - User Registration ----------------- @@ -106,8 +91,6 @@ very simple and new users need only supply an email address and their password. This view can be overrided if your registration process requires more fields. -.. login-tracking: - Login Tracking -------------- diff --git a/docs/index.rst b/docs/index.rst index 9274798..32784f3 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,8 +1,6 @@ Flask-Security ============== -.. image:: https://secure.travis-ci.org/mattupstate/flask-security.png?branch=develop - Flask-Security quickly adds security features to your Flask application.