Assignment 14

Your task is to make your front end website consume your api rather than have the logic in the php files for the pages.

The website files should invoke the api via php's curl extension. For example, on the register page, the parameters should be sent to the api /register endpoint and the result should determine the logic for the front end webpage, rather than the webpage doing all the work.

Note: Does the api have error messages for things like form validation? Does the form validation still need to be done in the web page before the parameters are sent to the api because of this?