Commit 4dd02a96 authored by Petrus J.v.Rensburg's avatar Petrus J.v.Rensburg

Auth & Perms: HTTP Basic Auth.

parent ec2238b9
Authorisation & permissions Authorisation & Permissions
=========== =================================
HTTP Basic Auth HTTP Basic Auth
------------ ------------------------
The simplest form of authentication is HTTP Basic Auth. It doesn't interfere
with your database models, and it doesn't require you to write any new view logic or
template code. So it's great for when you're deploying something that's still
under development, when you don't want the whole world to see it just yet.
Have a look at `Flask-BasicAuth <http://flask-basicauth.readthedocs.org/>`_ to see how
easy it is to put your whole application behind HTTP Basic Auth.
Unfortunately, there's no easy way of applying HTTP Basic Auth just to your admin
interface.
Using Flask-Security Using Flask-Security
-------------------- --------------------------------
...@@ -24,7 +24,7 @@ Have a look at http://examples.flask-admin.org/ to see them in action, or browse ...@@ -24,7 +24,7 @@ Have a look at http://examples.flask-admin.org/ to see them in action, or browse
User Guide User Guide
-------- -----------
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment