aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/authenticate.html
AgeCommit message (Collapse)AuthorFilesLines
2017-07-07Absolute imports & some other improvements (#243)Alexis Metaireau1-19/+0
* Use absolute imports and rename package to ihatemoney * Add a ihatemoney command * Factorize application creation logic * Refactor the tests * Update the wsgi.py module with the new create_app() function * Fix some styling thanks to Flake8. * Automate Flake8 check in the CI.
2017-05-18Public project creation and admin permissions (#210)0livd1-0/+6
* Add a @requires_admin decorator It can be used to protect specific endpoints with ADMIN_PASSWORD (a password that is stored unencrypted in the settings) The decorator has no effect if ADMIN_PASSWORD is an empty string (default value) * Require admin permissions to access create project endpoint When ADMIN_PASSWORD is not empty, project creation form on the home page will be replaced by a link to the create project endpoint so one is able to enter the admin password before filling the form
2015-08-20Remove trailing whitespacesJocelyn Delande1-1/+1
2012-04-05Update to Boostrap v2.Frédéric Sureau1-1/+1
Remove unused libs (QTip, JQueryUI) and add bootstrap-datepicker which is much lighter.
2011-10-15Translate the application using Flask-babel.Alexis Metaireau1-2/+2
The only translation so far is french, but more can be added. The browser language is used thanks to the HTTP languages headers. There are still some problems with the translation of some strings, I don't know why this is. See #12
2011-10-08Add a password recovery feature. Fix #32Alexis Metaireau1-4/+0
2011-09-09Refactor the application to use blueprints.Alexis Metaireau1-1/+1
This allows to isolate some behavior in the context of the web application so the API and the web application can behave in different ways.
2011-08-21Re-design (Fixes #19)Alexis Metaireau1-5/+1
2011-08-09Do not redirect users to the creation form when they are trying to log in.Alexis Metaireau1-0/+5
Fixes #9
2011-07-29Homepage created and project authentication refactoredFrédéric Sureau1-2/+4
2011-07-23Kick-start multiple projects support.Alexis Metaireau1-0/+14
This commit adds: * support for projects (creation not yet finished) * an authentication mechanism * bugs (basically all the features are not working anymore)