Dialogs Browser
Demonstrates the prompt and confirm dialogs
from fasthtml.common import Button, Div, fast_app
app, rt = fast_app()
@app.get
def page():
return Div()(
Button(
"Prompt Submission",
hx_post=submit,
hx_prompt="Enter a string",
hx_confirm="Are you sure?",
hx_target="#response",
),
Div(id="response"),
)
@app.post("/submit")
def submit(request, htmx: dict):
return f"User entered <i>{request.headers['HX-Prompt']}</i>"