Please, create an Ionic (Angular) application with 2 screens:
- Login screen
- List of tasks
This repository already contains the base application, please use it for a quick start. You can run and test application with the command: ionic serve
The login screen should have a username and password text fields. Authentication should be implemented using AWS Amplify library.
List of tasks should display a list of items from API. Each item should have a name and last modified time.
- User Pool ID: us-east-1_MPvCeCJvh
- Client ID: 1sfp40ks5bvhi3j8kgga7gktd2
User credentials for sign in
- Username: [email protected]
- Password: 123456
Use GET https://7vxy32ez3d.execute-api.us-east-1.amazonaws.com/dev/tasks
to fetch a list of tasks. The request should has Authorization
header: Bearer <token>
- Clone this repository
- Make changes in your repository
- Create a PR to merge changes into this repository