File size: 405 Bytes
aabf687
 
 
 
 
 
 
 
 
 
 
 
 
 
f854016
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)