Simple vs. Preflighted Requests in CORS: What Developers Need to Know

TL;DR:
Simple requests: sent directly, response blocked if CORS headers are missing.
Preflighted requests: OPTIONS first, then the real request if allowed.
HTML forms are why simple requests...