diff --git a/client/index.html b/client/index.html index 4b18d34..8e472a0 100644 --- a/client/index.html +++ b/client/index.html @@ -6,6 +6,9 @@ + + + diff --git a/server/controllers/auth.js b/server/controllers/auth.js index 8af5f90..a160259 100644 --- a/server/controllers/auth.js +++ b/server/controllers/auth.js @@ -60,7 +60,7 @@ exports.register = async function (fastify, request, reply) { const token = jwt.sign({ userId: username }, process.env.JWT_SECRET, { expiresIn: '12h' }); return reply.code(201).send({ success: true, - message: 'User account created successfully.', + message: 'Account created successfully.', data: { user: { email, avatar: avatarPath, username, first_name, last_name }, token