A very simple single-page web app built using Python Flask for a university assignment.
- Display a list of users (including paging)
- Display a single user (selected from the user list)
- Enable a new user to be created
- Enable a user to be updated
- Enables a user to be deleted
- Use vanilla JavaScript with JSON to communicate with the back-end API
- Get all users | HTTP Method: [GET]
- Get individual user | HTTP Method: [GET]
- Create new user | HTTP Method: [POST]
- Update user data | HTTP Method: [PUT]
- Delete the user | HTTP Method: [DELETE]
- Implement database support
- Implement search functionality
- Implement basic auth functionality utilising JSON Web Token's
- Improve UI to offer a more seamless and robust experience



