MLH-Fellowship / orientation-project-js-24.FAL.A

Orientation Project (JavaScript for 24.FAL.A)
0 stars 7 forks source link

Page for adding a new Education #10

Closed MLHProgram closed 1 month ago

MLHProgram commented 2 months ago

Add a page that allows users to add a new Education which includes the following fields:

Collaborate with the fellows contributing to the Python project to understand how logos will be managed. For now, assume this is a string (URL to the image).

When this information is submitted, a POST request should be made to /resume/education on the server in the following format:

{
    "course": "Engineering",
    "school": "NYU",
    "start_date": "October 2022",
    "end_date": "August 2024",
    "grade": "86%",
    "logo": "example-logo.png"
}

The server will return a JSON with the position in the list in the following format:

{
"id": 1
}
ShashwatSingh321 commented 2 months ago

https://code-help-azure.vercel.app/ https://github.com/ShashwatSingh321/code-Help/tree/main

JooZef315 commented 1 month ago

I can work on this