Web Projects If you are learning a web technology, you mustcreate a new page that is web-accessible (use your individualburrow account) that includes a form with a field that allows theuser to enter a number only.
â— Create an input that allows a number to be entered. Only wholenumbers should be allowed.
â— Add a button below the input that says \"Translate\".
â— When the button is clicked, it should grab the current numberin the input and send a POST request to the magic number generatorAPI with two parameters. â—‹ The first parameter is your team number(`team`) and can be hard-coded to your team number. â—‹ The secondparameter is the number in your input field (`number`).
â— The API returns a JSON response. You should parse theresponse.
â— You will receive two items in the response. Display bothresponse items in a clear way below your translate button. (Do notjust display the entire JSON response.) â—‹ The first is a status,which will be either true (successful) or false (unsuccessful). â—‹The second, if your request was successful, will be a message.
using php