NoJuanNobody / homeHealthAid

a full stack application for home health aid workers to sign in on site and complete tasks
MIT License
1 stars 0 forks source link

Give home health aid workers a list of tasks to complete while they are on site #3

Open NoJuanNobody opened 8 months ago

NoJuanNobody commented 8 months ago

User Story

as a home health aid worker, I want to know the tasks that I will be asked to do while I am working on site

Description Details

NoJuanNobody commented 8 months ago

you might want to check out these docs https://nextjs.org/

StoneyMcThomas commented 8 months ago

https://www.markdownguide.org/

StoneyMcThomas commented 7 months ago

UI_DB_int.txt

ssaidu001 commented 7 months ago

Good progress today, we were able to create end points for the ticket. Here's a snippet of the code:

// Define tasks management routes app.use('/api/tasks', tasksRouter(pool));

// Define API endpoint to set user's password app.post('/api/set-password', async (req, res) => { const plainTextPassword = req.body.password;