Catalog108 / challenges / static/forms/post
POST Form Challenge
What this challenge teaches
Teaches: Submit a POST form (application/x-www-form-urlencoded), inspect the resulting status + content.
Expected output: POST to this URL with form field "email". On valid email, expect a success message.
Submit your scraper's JSON output to /challenges/static/forms/post/grade
(grader endpoint is part of a later phase; URL is reserved now).
Hint: this endpoint accepts application/x-www-form-urlencoded. With requests:
requests.post(url, data={"email": "test@example.com"}).