Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -210,7 +210,7 @@ with gr.Blocks(theme=theme, css=custom_css, title="Booking") as demo:
|
|
| 210 |
|
| 211 |
gr.HTML("<div style='height: 10px'></div>")
|
| 212 |
|
| 213 |
-
gr.Markdown("### 👤 聯絡人資料 Contact")
|
| 214 |
with gr.Group():
|
| 215 |
with gr.Row():
|
| 216 |
cust_name = gr.Textbox(label="訂位姓名 Name *", placeholder="ex. 王小明")
|
|
@@ -218,13 +218,13 @@ with gr.Blocks(theme=theme, css=custom_css, title="Booking") as demo:
|
|
| 218 |
|
| 219 |
# --- 新增的 Email 與 備註 ---
|
| 220 |
with gr.Row():
|
| 221 |
-
cust_email = gr.Textbox(label="電子信箱
|
| 222 |
with gr.Row():
|
| 223 |
cust_remarks = gr.Textbox(label="備註 Remarks (過敏/慶生/特殊需求)", lines=2)
|
| 224 |
|
| 225 |
gr.HTML("<div style='height: 15px'></div>")
|
| 226 |
|
| 227 |
-
submit_btn = gr.Button("確認預約 Request Booking", size="lg", variant="primary")
|
| 228 |
output_msg = gr.HTML()
|
| 229 |
|
| 230 |
# 頁尾警語
|
|
|
|
| 210 |
|
| 211 |
gr.HTML("<div style='height: 10px'></div>")
|
| 212 |
|
| 213 |
+
gr.Markdown("### 👤 聯絡人資料 Contact,收到確認 E-Mail 並點擊 確認出席 才算訂位成功")
|
| 214 |
with gr.Group():
|
| 215 |
with gr.Row():
|
| 216 |
cust_name = gr.Textbox(label="訂位姓名 Name *", placeholder="ex. 王小明")
|
|
|
|
| 218 |
|
| 219 |
# --- 新增的 Email 與 備註 ---
|
| 220 |
with gr.Row():
|
| 221 |
+
cust_email = gr.Textbox(label="電子信箱 E-mail (接收確認 E-Mail用)", placeholder="example@gmail.com")
|
| 222 |
with gr.Row():
|
| 223 |
cust_remarks = gr.Textbox(label="備註 Remarks (過敏/慶生/特殊需求)", lines=2)
|
| 224 |
|
| 225 |
gr.HTML("<div style='height: 15px'></div>")
|
| 226 |
|
| 227 |
+
submit_btn = gr.Button("確認預約 Request Booking (系統會記錄是否曾 No Show)", size="lg", variant="primary")
|
| 228 |
output_msg = gr.HTML()
|
| 229 |
|
| 230 |
# 頁尾警語
|