summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/auth/add_user.html
Commit message (Collapse)AuthorAgeFilesLines
* forms: use checkboxes for scope selection in UserFormAlejandro Sirgo Rica2024-06-141-4/+40
| | | | | | | Enable selection of multiple scopes in user/add and user/edit for restricted users. Replace quick form creation with an inline form definition in add_user.html and edit_user.html
* Move password hashing to the backendJavier Sánchez Parra2022-06-301-10/+1
| | | | | | | | | | | This patch moves login password hashing from the frontend/javascript to the backend/flask. This patch moves password hashing of login and user management forms. Related commits: * c7b0024 ("Add password hashing") * 661254b ("Add 'Add user' to Users section")
* Add 'Add user' to Users sectionJavier Sánchez Parra2022-04-271-0/+26
Creates "Add user" form with the following inputs: username, password, password confirmation, role (administrator or regular), allowed scopes.