mirror of
https://github.com/fastapi/fastapi.git
synced 2026-07-16 09:53:12 -04:00
9 lines
182 B
Python
9 lines
182 B
Python
from fastapi import FastAPI, Form
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.post("/login/")
|
|
async def login(*, username: str = Form(...), password: str = Form(...)):
|
|
return {"username": username}
|