Cork - Authentication for the Bottle web framework
Cork provides a simple set of methods to implement Authentication and Authorization in web applications based on Bottle.
- Website and Documentation:
- http://cork.firelet.net
In this fork:
Change password:
@bottle.post('/change_password') def change_password(): old_password = post_get('old_password') new_password = post_get('new_password') aaa.change_password(old_password, new_password)