Spaces:
Sleeping
Sleeping
File size: 515 Bytes
6b30b5b 58d9740 ae08ae4 58d9740 521a2a1 1cfbd3f 58d9740 6b30b5b 1cfbd3f 6b30b5b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import gradio as gr
def greet(name):
# 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 as HTML
return iframe_code
# Allow raw HTML rendering, no inputs needed
demo = gr.Interface(fn=greet, inputs=None, outputs="html")
demo.launch()
|