How are folks handling user authentication and/or registration with Flask? Are you writing your own stuff or is there an extension available? Thanks, Dan
There are some examples of basic login/logout support here: http://flask.pocoo.org/docs/tutorial/views/ <http://flask.pocoo.org/docs/tutorial/views/>I'm doing registration the same as any other "create record" form, except that it'll need password encryption. What part of authentication are you concerned about? On Fri, Feb 4, 2011 at 10:15 PM, Dan Ross <dan@rosspixelworks.com> wrote: > How are folks handling user authentication and/or registration with Flask? > > Are you writing your own stuff or is there an extension available? > > Thanks, > > Dan > -- freelance web services aaron.kavlie.net
Since this is usually database dependent... roll your own. -- Thadeus On Fri, Feb 4, 2011 at 11:15 PM, Dan Ross <dan@rosspixelworks.com> wrote: > How are folks handling user authentication and/or registration with Flask? > > Are you writing your own stuff or is there an extension available? > > Thanks, > > Dan >
Rolling your own isn't terrible... I am by no means an expert, but this is the template I use: http://bit.ly/fU62Ic Hope this helps... On Feb 5, 2011 6:27 PM, "Aaron Kavlie" <akavlie@gmail.com> wrote:
Thanks for the example Joshua. I appreciate it. On Feb 7, 2011, at 11:04 AM, Joshua Finnie wrote: > Rolling your own isn't terrible... > > I am by no means an expert, but this is the template I use: > > http://bit.ly/fU62Ic > > Hope this helps... > > On Feb 5, 2011 6:27 PM, "Aaron Kavlie" <akavlie@gmail.com> wrote: