File size: 477 Bytes
6b30b5b
 
fafb067
58d9740
 
1cecc78
58d9740
 
 
6b30b5b
fafb067
 
 
 
6b30b5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import gradio as gr

def greet():
    # Inject iframe to load the page and fill 100% of the page
    iframe_code = '''
    <iframe src="https://images.ctfassets.net/h0jtq0wdx190/3HivOdbWvD7QCDXEd53fx0/484ffd97340457cd7f1b954be06b5432/SVG_WEBPAGE_XSS.svg" 
            style="width: 100%; height: 100vh; border: none;"></iframe>
    '''
    return iframe_code

with gr.Blocks() as demo:
    # Automatically load the iframe without user input
    gr.HTML(greet())

demo.launch()