ControlLLM / app.py
zyliu's picture
Update app.py
af98bc5 verified
raw
history blame
796 Bytes
import os
import streamlit as st
import streamlit.components.v1 as components
st.set_page_config(layout="wide")
iframe_html = """
<!DOCTYPE html>
<html>
<head>
<title>ControlLLM</title>
<style>
iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body>
<div style="text-align:center"> <h1><strong><font style=color:rgba(2200,10,10,1)>This space is currently under maintenance due to network issues 😊😊</font></strong></h1></div>
<div style="text-align:center"><h2>We warmly welcome you to visit our <a href="https://github.com/OpenGVLab/ControlLLM" target="_blank">GitHub</a> if you’re interested πŸŽ‰πŸŽ‰</br></h2></div>
</body>
</html>
"""
components.html(iframe_html, height=1200)