simple python
index.html
ユーザー情報入力フォーム
———————————————
prosess.py
#!/usr/bin/env python3
import cgi
import sys
import io
import os
import cgitb
cgitb.enable()
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
print("Content-type: text/html; charset=UTF-8\n")
# フォームデータを取得
form = cgi.FieldStorage()
name = form.getvalue("name", "未入力")
address = form.getvalue("address", "未入力")
phone = form.getvalue("phone", "未入力")
email = form.getvalue("email", "未入力")
# HTML表示
print(f"""
送信された情報
お名前: {name}
住所: {address}
電話番号: {phone}
メールアドレス: {email}
“””)
basketball.html