Liusuthu's picture
Update app.py
f854016 verified
raw
history blame
No virus
405 Bytes
import gradio as gr
introduce="""
<h1 align="center">社区签到系统</h1>
<p align="center">要求每日签到,七天未签到者踢出组织</p>
"""
with gr.Blocks() as system:
with gr.Row():
gr.HTML(introduce)
with gr.Row():
with gr.Column():
button=gr.Button("签到")
with gr.Column():
output=gr.Textbox(label="output",interactive=False)