Blogging app creates the following APIs:
• /register - POST - takes 3 form parameters ("full name", "email", "password") and registers the user in the database. Use Data Transfer Object (DTO) to send data to the controller.
• /login - POST - takes 2 form parameters ("email", "password") and returns the user's JWT ("data" key GenericSuccess(object data)). Use the Hawk class provided in the util package.